Several Fixes/Improvements

* Fix issue with parsing AOC leaderboard JSON
* Add aoc-util for different things
* go mod
* Makefile
This commit is contained in:
2021-12-01 11:41:19 -06:00
parent 24c7c80fbb
commit 14e2827377
16 changed files with 343 additions and 614 deletions

15
Makefile Normal file
View File

@@ -0,0 +1,15 @@
helperbot:
go build -o build/helperbot cmd/helperbot/*.go
plugins:
./buildplugins.sh
package:
go build -o build/helperbot cmd/helperbot/*.go
./buildplugins.sh
cp cmd/helperbot/helperbot.service build/
cd build && tar -zcvf helperbot.tgz *
aoc-util:
go build -o build/aoc-util cmd/aoc-util/*.go