diff --git a/Makefile b/Makefile index 1b977f4..292bbd1 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ build: - go build -o bin/helloGo cmd/hellogo.go + go build -o bin/helloGo main.go client.go packets.go server.go -run: - go run cmd/hellogo.go \ No newline at end of file +server: + go run main.go server.go client.go packets.go server \ No newline at end of file