mirror of
https://github.com/nitezs/sub2clash.git
synced 2024-12-23 21:04:41 -05:00
8 lines
240 B
Go
8 lines
240 B
Go
|
package validator
|
||
|
|
||
|
type SubQuery struct {
|
||
|
Sub string `form:"sub" json:"name" binding:"required"`
|
||
|
Mix bool `form:"mix,default=false" json:"email" binding:""`
|
||
|
Refresh bool `form:"refresh,default=false" json:"age" binding:""`
|
||
|
}
|