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
20 lines
291 B
Go
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()
|
|
)
|