teldrive/pkg/models/bot.go

10 lines
248 B
Go
Raw Normal View History

2023-09-20 03:20:44 +08:00
package models
type Bot struct {
Token string `gorm:"type:text;primaryKey"`
UserID int64 `gorm:"type:bigint"`
BotID int64 `gorm:"type:bigint"`
BotUserName string `gorm:"type:text"`
ChannelID int64 `gorm:"type:bigint"`
2023-09-20 03:20:44 +08:00
}