mirror of https://github.com/v2ray/v2ray-core
13 lines
215 B
Go
13 lines
215 B
Go
![]() |
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
|
||
|
}
|