sub2clash/model/short_link.go

9 lines
157 B
Go
Raw Normal View History

2023-09-17 15:52:37 +08:00
package model
type ShortLink struct {
Hash string `gorm:"primary_key"`
Url string
Password string
2023-09-17 15:52:37 +08:00
LastRequestTime int64
}