mirror of
https://github.com/SagerNet/sing-box.git
synced 2024-11-16 15:42:21 +08:00
13 lines
330 B
Go
13 lines
330 B
Go
|
package option
|
||
|
|
||
|
type DNSOptions struct {
|
||
|
Servers []DNSServerOptions `json:"servers,omitempty"`
|
||
|
}
|
||
|
|
||
|
type DNSServerOptions struct {
|
||
|
Tag string `json:"tag,omitempty"`
|
||
|
Address string `json:"address"`
|
||
|
Detour string `json:"detour,omitempty"`
|
||
|
AddressResolver string `json:"address_resolver,omitempty"`
|
||
|
}
|