mirror of
https://github.com/JuLi0n21/thumbnailservice.git
synced 2026-04-20 00:10:07 +00:00
10 lines
253 B
Plaintext
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
|