Dumped just

This commit is contained in:
Imbus 2024-04-26 23:37:19 +02:00
parent adb2465136
commit a082346758

15
makefile Normal file
View file

@ -0,0 +1,15 @@
run:
cd src && go run .
build:
mkdir -p bin
cd src && go build -o ../bin/main .
test:
cd src && go test -v .
clean:
rm -rf bin/*
format:
go fmt src/*.go