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