This commit is contained in:
2025-03-24 21:45:12 +01:00
commit d640f5007f
19 changed files with 1325 additions and 0 deletions

9
MAKEFILE Normal file
View File

@@ -0,0 +1,9 @@
# 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