feat: init go project

This commit is contained in:
2026-06-06 22:19:21 +00:00
parent 3b6e443483
commit 7809552d05
8 changed files with 235 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
.PHONY: fmt test run tidy
fmt:
go fmt ./...
test:
go test ./...
run:
go run ./cmd/bot
tidy:
go mod tidy