mirror of
https://github.com/nitezs/sub2clash.git
synced 2025-04-03 20:23:45 +08:00
19 lines
489 B
Go
19 lines
489 B
Go
package validator
|
|
|
|
type ShortLinkGenValidator struct {
|
|
Url string `form:"url" binding:"required"`
|
|
Password string `form:"password"`
|
|
CustomID string `form:"customId"`
|
|
}
|
|
|
|
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"`
|
|
}
|