Files
thumbnailservice/MAKEFILE
2025-03-24 21:45:12 +01:00

10 lines
253 B
Plaintext

# Makefile
# Define the 'proto' target
proto:
# Generate Go code for the client
protoc --go_out=./client --go-grpc_out=./client ./thumbnail.proto
# Generate Go code for the server
protoc --go_out=./server --go-grpc_out=./server ./thumbnail.proto