sshpong/makefile
2024-10-03 22:41:33 -06:00

14 lines
181 B
Makefile

lint:
golangci-lint run
server:
air -c .air_server.toml
client:
while true; do \
go run cmd/client/main.go;\
echo "Client has exited, restarting...";\
sleep 2;\
done