mirror of
https://github.com/nitezs/sub2sing-box.git
synced 2024-12-25 01:34:41 -05:00
10 lines
375 B
Go
10 lines
375 B
Go
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"`
|
|
}
|