initial commit

This commit is contained in:
Yiyang Kang 2022-11-21 03:39:21 +08:00
commit 2f65200729
Signed by: kkyy
GPG key ID: 80FD317ECAF06CC3
8 changed files with 1209 additions and 0 deletions

10
Makefile Normal file
View file

@ -0,0 +1,10 @@
build:
CGO_ENABLED=0 go build -v -trimpath -ldflags='-s -w'
pack: build
tar --owner root --group root -c tgbot_misaka_5882f7 | zstdmt -15v > tgbot_misaka_5882f7.tar.zst
send: pack
wh send tgbot_misaka_5882f7.tar.zst
.PHONY: build pack send