mirror of
https://github.com/bestnite/sub2sing-box.git
synced 2025-05-03 17:32:03 +08:00
16 lines
757 B
Go
Executable File
16 lines
757 B
Go
Executable File
package model
|
|
|
|
type ConvertRequest struct {
|
|
Subscriptions []string `form:"subscription" json:"subscription"`
|
|
Proxies []string `form:"proxy" json:"proxy"`
|
|
Template string `form:"template" json:"template"`
|
|
Delete string `form:"delete" json:"delete"`
|
|
Rename map[string]string `form:"rename" json:"rename"`
|
|
Group bool `form:"group" json:"group"`
|
|
GroupType string `form:"group-type" json:"group-type"`
|
|
SortKey string `form:"sort" json:"sort"`
|
|
SortType string `form:"sort-type" json:"sort-type"`
|
|
Output string `json:"output"`
|
|
GroupRules string `form:"group-rules" json:"group-rules"`
|
|
}
|