├── .gitignore ├── README.md ├── eventmgr ├── api │ └── response.go ├── app │ └── app.go ├── application.yml ├── config │ ├── config.go │ └── db.go ├── db │ ├── db.go │ ├── errors.go │ ├── mock.go │ └── sweat.go ├── go.mod ├── go.sum ├── main.go ├── server │ ├── dependencies.go │ ├── router.go │ └── server.go └── sweat │ ├── domain.go │ ├── errors.go │ ├── handler.go │ └── service.go ├── profilemgr ├── api │ └── response.go ├── app │ └── app.go ├── application.yml ├── config │ ├── config.go │ └── db.go ├── db │ ├── db.go │ ├── errors.go │ ├── mock.go │ └── user.go ├── go.mod ├── go.sum ├── main.go ├── server │ ├── dependencies.go │ ├── router.go │ └── server.go └── user │ ├── domain.go │ ├── errors.go │ ├── handler.go │ ├── handler_test.go │ ├── mock.go │ ├── service.go │ └── service_test.go ├── proto ├── go.mod ├── sweatmgr │ ├── sweatmgr.pb.go │ └── sweatmgr.proto └── usermgr │ ├── usermgr.pb.go │ └── usermgr.proto ├── reportsmgr ├── client.go ├── go.mod └── go.sum ├── samplemgr ├── db │ └── db.go ├── go.mod ├── go.sum ├── samplemgr.go └── service │ ├── handler.go │ └── router.go ├── sweatmgr ├── application.yml.default ├── config │ └── config.go ├── db │ ├── db.go │ ├── mock.go │ ├── sweat.go │ └── user.go ├── go.mod ├── go.sum ├── logger │ └── logger.go ├── service │ ├── dependencies.go │ ├── handler.go │ ├── handler_test.go │ ├── router.go │ ├── sweat_grpc.go │ ├── sweat_handler.go │ ├── user_handler.go │ └── usermgr.go ├── swagger.yml └── sweatmgr.go └── usermgr ├── application.yml.default ├── config └── config.go ├── db ├── db.go ├── mock.go └── user.go ├── go.mod ├── go.sum ├── logger └── logger.go ├── service ├── dependencies.go ├── grpc_handler.go ├── handler.go └── router.go ├── swagger.yml └── usermgr.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Microservices-with-Go-and-MongoDB/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Microservices-with-Go-and-MongoDB/HEAD/README.md -------------------------------------------------------------------------------- /eventmgr/api/response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Microservices-with-Go-and-MongoDB/HEAD/eventmgr/api/response.go -------------------------------------------------------------------------------- /eventmgr/app/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Microservices-with-Go-and-MongoDB/HEAD/eventmgr/app/app.go -------------------------------------------------------------------------------- /eventmgr/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Microservices-with-Go-and-MongoDB/HEAD/eventmgr/application.yml -------------------------------------------------------------------------------- /eventmgr/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Microservices-with-Go-and-MongoDB/HEAD/eventmgr/config/config.go -------------------------------------------------------------------------------- /eventmgr/config/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Microservices-with-Go-and-MongoDB/HEAD/eventmgr/config/db.go -------------------------------------------------------------------------------- /eventmgr/db/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Microservices-with-Go-and-MongoDB/HEAD/eventmgr/db/db.go -------------------------------------------------------------------------------- /eventmgr/db/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Microservices-with-Go-and-MongoDB/HEAD/eventmgr/db/errors.go -------------------------------------------------------------------------------- /eventmgr/db/mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Microservices-with-Go-and-MongoDB/HEAD/eventmgr/db/mock.go -------------------------------------------------------------------------------- /eventmgr/db/sweat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Microservices-with-Go-and-MongoDB/HEAD/eventmgr/db/sweat.go -------------------------------------------------------------------------------- /eventmgr/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Microservices-with-Go-and-MongoDB/HEAD/eventmgr/go.mod -------------------------------------------------------------------------------- /eventmgr/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Microservices-with-Go-and-MongoDB/HEAD/eventmgr/go.sum -------------------------------------------------------------------------------- /eventmgr/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Microservices-with-Go-and-MongoDB/HEAD/eventmgr/main.go -------------------------------------------------------------------------------- /eventmgr/server/dependencies.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Microservices-with-Go-and-MongoDB/HEAD/eventmgr/server/dependencies.go -------------------------------------------------------------------------------- /eventmgr/server/router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Microservices-with-Go-and-MongoDB/HEAD/eventmgr/server/router.go -------------------------------------------------------------------------------- /eventmgr/server/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Microservices-with-Go-and-MongoDB/HEAD/eventmgr/server/server.go -------------------------------------------------------------------------------- /eventmgr/sweat/domain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Microservices-with-Go-and-MongoDB/HEAD/eventmgr/sweat/domain.go -------------------------------------------------------------------------------- /eventmgr/sweat/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Microservices-with-Go-and-MongoDB/HEAD/eventmgr/sweat/errors.go -------------------------------------------------------------------------------- /eventmgr/sweat/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Microservices-with-Go-and-MongoDB/HEAD/eventmgr/sweat/handler.go -------------------------------------------------------------------------------- /eventmgr/sweat/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Microservices-with-Go-and-MongoDB/HEAD/eventmgr/sweat/service.go -------------------------------------------------------------------------------- /profilemgr/api/response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Microservices-with-Go-and-MongoDB/HEAD/profilemgr/api/response.go -------------------------------------------------------------------------------- /profilemgr/app/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Microservices-with-Go-and-MongoDB/HEAD/profilemgr/app/app.go -------------------------------------------------------------------------------- /profilemgr/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Microservices-with-Go-and-MongoDB/HEAD/profilemgr/application.yml -------------------------------------------------------------------------------- /profilemgr/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Microservices-with-Go-and-MongoDB/HEAD/profilemgr/config/config.go -------------------------------------------------------------------------------- /profilemgr/config/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Microservices-with-Go-and-MongoDB/HEAD/profilemgr/config/db.go -------------------------------------------------------------------------------- /profilemgr/db/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Microservices-with-Go-and-MongoDB/HEAD/profilemgr/db/db.go -------------------------------------------------------------------------------- /profilemgr/db/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Microservices-with-Go-and-MongoDB/HEAD/profilemgr/db/errors.go -------------------------------------------------------------------------------- /profilemgr/db/mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Microservices-with-Go-and-MongoDB/HEAD/profilemgr/db/mock.go -------------------------------------------------------------------------------- /profilemgr/db/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Microservices-with-Go-and-MongoDB/HEAD/profilemgr/db/user.go -------------------------------------------------------------------------------- /profilemgr/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Microservices-with-Go-and-MongoDB/HEAD/profilemgr/go.mod -------------------------------------------------------------------------------- /profilemgr/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Microservices-with-Go-and-MongoDB/HEAD/profilemgr/go.sum -------------------------------------------------------------------------------- /profilemgr/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Microservices-with-Go-and-MongoDB/HEAD/profilemgr/main.go -------------------------------------------------------------------------------- /profilemgr/server/dependencies.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Microservices-with-Go-and-MongoDB/HEAD/profilemgr/server/dependencies.go -------------------------------------------------------------------------------- /profilemgr/server/router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Microservices-with-Go-and-MongoDB/HEAD/profilemgr/server/router.go -------------------------------------------------------------------------------- /profilemgr/server/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Microservices-with-Go-and-MongoDB/HEAD/profilemgr/server/server.go -------------------------------------------------------------------------------- /profilemgr/user/domain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Microservices-with-Go-and-MongoDB/HEAD/profilemgr/user/domain.go -------------------------------------------------------------------------------- /profilemgr/user/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Microservices-with-Go-and-MongoDB/HEAD/profilemgr/user/errors.go -------------------------------------------------------------------------------- /profilemgr/user/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Microservices-with-Go-and-MongoDB/HEAD/profilemgr/user/handler.go -------------------------------------------------------------------------------- /profilemgr/user/handler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Microservices-with-Go-and-MongoDB/HEAD/profilemgr/user/handler_test.go -------------------------------------------------------------------------------- /profilemgr/user/mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Microservices-with-Go-and-MongoDB/HEAD/profilemgr/user/mock.go -------------------------------------------------------------------------------- /profilemgr/user/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Microservices-with-Go-and-MongoDB/HEAD/profilemgr/user/service.go -------------------------------------------------------------------------------- /profilemgr/user/service_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Microservices-with-Go-and-MongoDB/HEAD/profilemgr/user/service_test.go -------------------------------------------------------------------------------- /proto/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/gautamrege/packt/sweatbead/proto 2 | 3 | go 1.12 4 | -------------------------------------------------------------------------------- /proto/sweatmgr/sweatmgr.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Microservices-with-Go-and-MongoDB/HEAD/proto/sweatmgr/sweatmgr.pb.go -------------------------------------------------------------------------------- /proto/sweatmgr/sweatmgr.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Microservices-with-Go-and-MongoDB/HEAD/proto/sweatmgr/sweatmgr.proto -------------------------------------------------------------------------------- /proto/usermgr/usermgr.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Microservices-with-Go-and-MongoDB/HEAD/proto/usermgr/usermgr.pb.go -------------------------------------------------------------------------------- /proto/usermgr/usermgr.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Microservices-with-Go-and-MongoDB/HEAD/proto/usermgr/usermgr.proto -------------------------------------------------------------------------------- /reportsmgr/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Microservices-with-Go-and-MongoDB/HEAD/reportsmgr/client.go -------------------------------------------------------------------------------- /reportsmgr/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Microservices-with-Go-and-MongoDB/HEAD/reportsmgr/go.mod -------------------------------------------------------------------------------- /reportsmgr/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Microservices-with-Go-and-MongoDB/HEAD/reportsmgr/go.sum -------------------------------------------------------------------------------- /samplemgr/db/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Microservices-with-Go-and-MongoDB/HEAD/samplemgr/db/db.go -------------------------------------------------------------------------------- /samplemgr/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Microservices-with-Go-and-MongoDB/HEAD/samplemgr/go.mod -------------------------------------------------------------------------------- /samplemgr/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Microservices-with-Go-and-MongoDB/HEAD/samplemgr/go.sum -------------------------------------------------------------------------------- /samplemgr/samplemgr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Microservices-with-Go-and-MongoDB/HEAD/samplemgr/samplemgr.go -------------------------------------------------------------------------------- /samplemgr/service/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Microservices-with-Go-and-MongoDB/HEAD/samplemgr/service/handler.go -------------------------------------------------------------------------------- /samplemgr/service/router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Microservices-with-Go-and-MongoDB/HEAD/samplemgr/service/router.go -------------------------------------------------------------------------------- /sweatmgr/application.yml.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Microservices-with-Go-and-MongoDB/HEAD/sweatmgr/application.yml.default -------------------------------------------------------------------------------- /sweatmgr/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Microservices-with-Go-and-MongoDB/HEAD/sweatmgr/config/config.go -------------------------------------------------------------------------------- /sweatmgr/db/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Microservices-with-Go-and-MongoDB/HEAD/sweatmgr/db/db.go -------------------------------------------------------------------------------- /sweatmgr/db/mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Microservices-with-Go-and-MongoDB/HEAD/sweatmgr/db/mock.go -------------------------------------------------------------------------------- /sweatmgr/db/sweat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Microservices-with-Go-and-MongoDB/HEAD/sweatmgr/db/sweat.go -------------------------------------------------------------------------------- /sweatmgr/db/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Microservices-with-Go-and-MongoDB/HEAD/sweatmgr/db/user.go -------------------------------------------------------------------------------- /sweatmgr/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Microservices-with-Go-and-MongoDB/HEAD/sweatmgr/go.mod -------------------------------------------------------------------------------- /sweatmgr/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Microservices-with-Go-and-MongoDB/HEAD/sweatmgr/go.sum -------------------------------------------------------------------------------- /sweatmgr/logger/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Microservices-with-Go-and-MongoDB/HEAD/sweatmgr/logger/logger.go -------------------------------------------------------------------------------- /sweatmgr/service/dependencies.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Microservices-with-Go-and-MongoDB/HEAD/sweatmgr/service/dependencies.go -------------------------------------------------------------------------------- /sweatmgr/service/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Microservices-with-Go-and-MongoDB/HEAD/sweatmgr/service/handler.go -------------------------------------------------------------------------------- /sweatmgr/service/handler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Microservices-with-Go-and-MongoDB/HEAD/sweatmgr/service/handler_test.go -------------------------------------------------------------------------------- /sweatmgr/service/router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Microservices-with-Go-and-MongoDB/HEAD/sweatmgr/service/router.go -------------------------------------------------------------------------------- /sweatmgr/service/sweat_grpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Microservices-with-Go-and-MongoDB/HEAD/sweatmgr/service/sweat_grpc.go -------------------------------------------------------------------------------- /sweatmgr/service/sweat_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Microservices-with-Go-and-MongoDB/HEAD/sweatmgr/service/sweat_handler.go -------------------------------------------------------------------------------- /sweatmgr/service/user_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Microservices-with-Go-and-MongoDB/HEAD/sweatmgr/service/user_handler.go -------------------------------------------------------------------------------- /sweatmgr/service/usermgr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Microservices-with-Go-and-MongoDB/HEAD/sweatmgr/service/usermgr.go -------------------------------------------------------------------------------- /sweatmgr/swagger.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Microservices-with-Go-and-MongoDB/HEAD/sweatmgr/swagger.yml -------------------------------------------------------------------------------- /sweatmgr/sweatmgr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Microservices-with-Go-and-MongoDB/HEAD/sweatmgr/sweatmgr.go -------------------------------------------------------------------------------- /usermgr/application.yml.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Microservices-with-Go-and-MongoDB/HEAD/usermgr/application.yml.default -------------------------------------------------------------------------------- /usermgr/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Microservices-with-Go-and-MongoDB/HEAD/usermgr/config/config.go -------------------------------------------------------------------------------- /usermgr/db/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Microservices-with-Go-and-MongoDB/HEAD/usermgr/db/db.go -------------------------------------------------------------------------------- /usermgr/db/mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Microservices-with-Go-and-MongoDB/HEAD/usermgr/db/mock.go -------------------------------------------------------------------------------- /usermgr/db/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Microservices-with-Go-and-MongoDB/HEAD/usermgr/db/user.go -------------------------------------------------------------------------------- /usermgr/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Microservices-with-Go-and-MongoDB/HEAD/usermgr/go.mod -------------------------------------------------------------------------------- /usermgr/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Microservices-with-Go-and-MongoDB/HEAD/usermgr/go.sum -------------------------------------------------------------------------------- /usermgr/logger/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Microservices-with-Go-and-MongoDB/HEAD/usermgr/logger/logger.go -------------------------------------------------------------------------------- /usermgr/service/dependencies.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Microservices-with-Go-and-MongoDB/HEAD/usermgr/service/dependencies.go -------------------------------------------------------------------------------- /usermgr/service/grpc_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Microservices-with-Go-and-MongoDB/HEAD/usermgr/service/grpc_handler.go -------------------------------------------------------------------------------- /usermgr/service/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Microservices-with-Go-and-MongoDB/HEAD/usermgr/service/handler.go -------------------------------------------------------------------------------- /usermgr/service/router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Microservices-with-Go-and-MongoDB/HEAD/usermgr/service/router.go -------------------------------------------------------------------------------- /usermgr/swagger.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Microservices-with-Go-and-MongoDB/HEAD/usermgr/swagger.yml -------------------------------------------------------------------------------- /usermgr/usermgr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Microservices-with-Go-and-MongoDB/HEAD/usermgr/usermgr.go --------------------------------------------------------------------------------