8 lines
129 B
Makefile
8 lines
129 B
Makefile
compile:
|
|
protoc api/v1/*.proto \
|
|
--go_out=. \
|
|
--go_opt=paths=source_relative \
|
|
--proto_path=.
|
|
|
|
test:
|
|
go test -race ./...
|