mirror of
https://github.com/nitezs/sub2sing-box.git
synced 2024-12-25 00:04:41 -05:00
10 lines
325 B
Go
10 lines
325 B
Go
|
package model
|
||
|
|
||
|
type TorOutboundOptions struct {
|
||
|
DialerOptions
|
||
|
ExecutablePath string `json:"executable_path,omitempty"`
|
||
|
ExtraArgs []string `json:"extra_args,omitempty"`
|
||
|
DataDirectory string `json:"data_directory,omitempty"`
|
||
|
Options map[string]string `json:"torrc,omitempty"`
|
||
|
}
|