all: ge build run
ge:
protoc -I./protos --go_out=./protos --go-grpc_out=./protos ./protos/*proto
protoc-go-inject-tag -input=./protos/pb/*.pb.go
test:
go run test/client.go
run:
go run main.go
build:
go build -o bin/server main.go
.PHONY: all build protos test