Files
trbot/utils/configs/consts.go
Hubert Chen b53856fdbc read sticker in zip when download single sticker
sticker:
    delay zip file close function
internal:
    remove inline prefix handler `log`
    add slash command `log`
    add inline prefix handler `gc`
version:
    add `github.com/dustin/go-humanize` for memory
2025-10-16 21:55:46 +08:00

20 lines
291 B
Go

package configs
import (
"time"
"github.com/go-telegram/bot/models"
)
var BotMe *models.User // 用于存储 bot 信息
var (
Commit string
Branch string
Version string
BuildAt string
BuildOn string
Changes string // uncommit files when build
StartAt time.Time = time.Now()
)