feat:#36 added protobuf for golang microservices

This commit is contained in:
Elmar Kresse
2024-06-16 02:54:50 +02:00
parent a56c17e945
commit 8548a537ec
55 changed files with 186 additions and 990 deletions

16
services/Makefile Normal file
View File

@@ -0,0 +1,16 @@
run-data-manager:
@go run data-manager/main.go serve
run-ical:
@go run ical/main.go
build-ical:
@go build ical/main.go
gen:
@protoc \
--proto_path=protobuf "protobuf/modules.proto" \
--go_out=common/genproto/modules \
--go_opt=paths=source_relative \
--go-grpc_out=common/genproto/modules \
--go-grpc_opt=paths=source_relative