├── README.md ├── config.json ├── handler └── EmployeeHandler.go ├── main.go ├── models ├── Config.go └── Employee.go ├── repository └── EmployeeRepository.go ├── route └── router.go └── teste.html /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshiossada/go-apirest-mysql/HEAD/README.md -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshiossada/go-apirest-mysql/HEAD/config.json -------------------------------------------------------------------------------- /handler/EmployeeHandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshiossada/go-apirest-mysql/HEAD/handler/EmployeeHandler.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshiossada/go-apirest-mysql/HEAD/main.go -------------------------------------------------------------------------------- /models/Config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshiossada/go-apirest-mysql/HEAD/models/Config.go -------------------------------------------------------------------------------- /models/Employee.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshiossada/go-apirest-mysql/HEAD/models/Employee.go -------------------------------------------------------------------------------- /repository/EmployeeRepository.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshiossada/go-apirest-mysql/HEAD/repository/EmployeeRepository.go -------------------------------------------------------------------------------- /route/router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshiossada/go-apirest-mysql/HEAD/route/router.go -------------------------------------------------------------------------------- /teste.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshiossada/go-apirest-mysql/HEAD/teste.html --------------------------------------------------------------------------------