v2ray-core/infra/conf/dns_proxy.go

13 lines
215 B
Go
Raw Normal View History

2019-02-10 18:04:11 +00:00
package conf
import (
"github.com/golang/protobuf/proto"
"v2ray.com/core/proxy/dns"
)
type DnsOutboundConfig struct{}
func (c *DnsOutboundConfig) Build() (proto.Message, error) {
return new(dns.Config), nil
}