From 2978850e31b88dd1529e946e0a9b1484566dbd4d Mon Sep 17 00:00:00 2001 From: Asim Aslam Date: Wed, 12 May 2021 19:48:23 +0100 Subject: [PATCH] update users makefile --- users/Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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