1
0
mirror of https://github.com/nitezs/sub2clash.git synced 2024-12-24 12:44:42 -05:00
sub2clash/model/short_link.go
2023-09-17 15:52:37 +08:00

8 lines
133 B
Go

package model
type ShortLink struct {
Hash string `gorm:"primary_key"`
Url string
LastRequestTime int64
}