mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-04 09:17:32 -05:00
13 lines
155 B
Go
13 lines
155 B
Go
package dns
|
|
|
|
import (
|
|
"net"
|
|
|
|
v2net "v2ray.com/core/common/net"
|
|
)
|
|
|
|
type Config struct {
|
|
Hosts map[string]net.IP
|
|
NameServers []v2net.Destination
|
|
}
|