1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-28 14:56:33 -04:00
v2fly/app/dns/config.go

10 lines
129 B
Go
Raw Normal View History

2016-05-16 03:25:34 -04:00
package dns
2015-12-06 05:00:10 -05:00
2016-01-15 09:23:12 -05:00
import (
2016-05-16 02:09:28 -04:00
v2net "github.com/v2ray/v2ray-core/common/net"
2016-01-15 09:23:12 -05:00
)
2016-05-16 02:09:28 -04:00
type Config struct {
NameServers []v2net.Destination
2015-12-06 05:00:10 -05:00
}