diff --git a/users/Makefile b/users/Makefile index ddbb866..02a419a 100644 --- a/users/Makefile +++ b/users/Makefile @@ -8,7 +8,11 @@ init: .PHONY: proto proto: protoc --proto_path=. --micro_out=. --go_out=:. proto/users.proto - + +docs: + protoc --openapi_out=. --proto_path=. --micro_out=. --go_out=. proto/users.proto + @redoc-cli bundle api-users.json + .PHONY: build build: go build -o users *.go