Makefile 247 B

1234567891011121314
  1. gen:
  2. protoc --go_out=. --go_opt=paths=source_relative --go-grpc_out=. --go-grpc_opt=paths=source_relative *.proto
  3. clean:
  4. rm *.go
  5. run-server:
  6. go run server/main.go
  7. run-client:
  8. go run client/main.go
  9. test:
  10. go test -cover -race ./...