mirror of
https://github.com/nitezs/sub2clash.git
synced 2024-12-23 21:34:41 -05:00
9 lines
157 B
Go
9 lines
157 B
Go
package model
|
|
|
|
type ShortLink struct {
|
|
Hash string `gorm:"primary_key"`
|
|
Url string
|
|
Password string
|
|
LastRequestTime int64
|
|
}
|