update code to current

This commit is contained in:
Merith-TK 2024-03-16 18:53:16 -07:00
parent 0a563d8b02
commit 0ad7b3f110
6 changed files with 55 additions and 17 deletions

10
makefile Normal file
View file

@ -0,0 +1,10 @@
default: runserver
setup:
-mkdir -p workspace
runserver: setup
go build -o workspace/server.exe ./cmd/server
./workspace/server.exe
runclient: setup
go build -o workspace/client.exe ./cmd/client
./workspace/client.exe