mirror of
https://github.com/nitezs/sub2clash.git
synced 2024-12-24 12:54:41 -05:00
8 lines
133 B
Go
8 lines
133 B
Go
package model
|
|
|
|
type ShortLink struct {
|
|
Hash string `gorm:"primary_key"`
|
|
Url string
|
|
LastRequestTime int64
|
|
}
|