├── .gitignore ├── Makefile ├── README.md ├── auth ├── Dockerfile ├── go.mod ├── go.sum ├── main.go ├── security │ └── jwt.go └── user │ ├── endpoint.go │ ├── endpoint_test.go │ ├── service.go │ ├── service_test.go │ ├── transport_http.go │ └── transport_http_test.go ├── feedbacks ├── Dockerfile ├── feedback │ ├── endpoint.go │ ├── entity.go │ ├── service.go │ └── transport_http.go ├── go.mod ├── go.sum └── main.go ├── go.mod ├── go.sum ├── pkg └── middleware │ └── is_authenticaded.go └── votes ├── Dockerfile ├── go.mod ├── go.sum ├── main.go └── vote ├── endpoint.go ├── entity.go ├── service.go └── transport_http.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminetto/talk-microservices-gokit/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminetto/talk-microservices-gokit/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminetto/talk-microservices-gokit/HEAD/README.md -------------------------------------------------------------------------------- /auth/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminetto/talk-microservices-gokit/HEAD/auth/Dockerfile -------------------------------------------------------------------------------- /auth/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminetto/talk-microservices-gokit/HEAD/auth/go.mod -------------------------------------------------------------------------------- /auth/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminetto/talk-microservices-gokit/HEAD/auth/go.sum -------------------------------------------------------------------------------- /auth/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminetto/talk-microservices-gokit/HEAD/auth/main.go -------------------------------------------------------------------------------- /auth/security/jwt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminetto/talk-microservices-gokit/HEAD/auth/security/jwt.go -------------------------------------------------------------------------------- /auth/user/endpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminetto/talk-microservices-gokit/HEAD/auth/user/endpoint.go -------------------------------------------------------------------------------- /auth/user/endpoint_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminetto/talk-microservices-gokit/HEAD/auth/user/endpoint_test.go -------------------------------------------------------------------------------- /auth/user/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminetto/talk-microservices-gokit/HEAD/auth/user/service.go -------------------------------------------------------------------------------- /auth/user/service_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminetto/talk-microservices-gokit/HEAD/auth/user/service_test.go -------------------------------------------------------------------------------- /auth/user/transport_http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminetto/talk-microservices-gokit/HEAD/auth/user/transport_http.go -------------------------------------------------------------------------------- /auth/user/transport_http_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminetto/talk-microservices-gokit/HEAD/auth/user/transport_http_test.go -------------------------------------------------------------------------------- /feedbacks/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminetto/talk-microservices-gokit/HEAD/feedbacks/Dockerfile -------------------------------------------------------------------------------- /feedbacks/feedback/endpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminetto/talk-microservices-gokit/HEAD/feedbacks/feedback/endpoint.go -------------------------------------------------------------------------------- /feedbacks/feedback/entity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminetto/talk-microservices-gokit/HEAD/feedbacks/feedback/entity.go -------------------------------------------------------------------------------- /feedbacks/feedback/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminetto/talk-microservices-gokit/HEAD/feedbacks/feedback/service.go -------------------------------------------------------------------------------- /feedbacks/feedback/transport_http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminetto/talk-microservices-gokit/HEAD/feedbacks/feedback/transport_http.go -------------------------------------------------------------------------------- /feedbacks/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminetto/talk-microservices-gokit/HEAD/feedbacks/go.mod -------------------------------------------------------------------------------- /feedbacks/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminetto/talk-microservices-gokit/HEAD/feedbacks/go.sum -------------------------------------------------------------------------------- /feedbacks/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminetto/talk-microservices-gokit/HEAD/feedbacks/main.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/eminetto/talk-microservices-gokit 2 | 3 | go 1.16 4 | -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkg/middleware/is_authenticaded.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminetto/talk-microservices-gokit/HEAD/pkg/middleware/is_authenticaded.go -------------------------------------------------------------------------------- /votes/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminetto/talk-microservices-gokit/HEAD/votes/Dockerfile -------------------------------------------------------------------------------- /votes/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminetto/talk-microservices-gokit/HEAD/votes/go.mod -------------------------------------------------------------------------------- /votes/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminetto/talk-microservices-gokit/HEAD/votes/go.sum -------------------------------------------------------------------------------- /votes/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminetto/talk-microservices-gokit/HEAD/votes/main.go -------------------------------------------------------------------------------- /votes/vote/endpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminetto/talk-microservices-gokit/HEAD/votes/vote/endpoint.go -------------------------------------------------------------------------------- /votes/vote/entity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminetto/talk-microservices-gokit/HEAD/votes/vote/entity.go -------------------------------------------------------------------------------- /votes/vote/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminetto/talk-microservices-gokit/HEAD/votes/vote/service.go -------------------------------------------------------------------------------- /votes/vote/transport_http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminetto/talk-microservices-gokit/HEAD/votes/vote/transport_http.go --------------------------------------------------------------------------------