mirror of
https://github.com/tgdrive/teldrive.git
synced 2025-02-25 07:25:57 +08:00
8 lines
207 B
Go
8 lines
207 B
Go
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"`
|
|
}
|