From 9793d12aa26e096f53216e7b6d07e2358e256336 Mon Sep 17 00:00:00 2001 From: Zam Date: Thu, 9 Nov 2023 11:06:24 +0100 Subject: [PATCH] Updated Makefile --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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