Add initial code

This commit is contained in:
Jacob Gunther
2022-07-30 22:13:16 -05:00
commit 70601daac0
14 changed files with 1213 additions and 0 deletions

16
Makefile Normal file
View File

@@ -0,0 +1,16 @@
build:
go build -o bin/main src/*.go
build-linux:
GOOS=linux go build -o bin/main src/*.go
build-windows:
GOOS=windows go build -o bin/main src/*.go
run:
go run src/*.go
flush-cache:
go run src/*.go --flush-cache
all: build