mirror of
https://github.com/bestnite/sub2clash.git
synced 2025-04-10 17:15:55 +08:00
18 lines
454 B
Go
18 lines
454 B
Go
package validator
|
|
|
|
type ShortLinkGenValidator struct {
|
|
Url string `form:"url" binding:"required"`
|
|
Password string `form:"password"`
|
|
}
|
|
|
|
type GetUrlValidator struct {
|
|
Hash string `form:"hash" binding:"required"`
|
|
Password string `form:"password"`
|
|
}
|
|
|
|
type ShortLinkUpdateValidator struct {
|
|
Hash string `form:"hash" binding:"required"`
|
|
Url string `form:"url" binding:"required"`
|
|
Password string `form:"password" binding:"required"`
|
|
}
|