mirror of
https://github.com/v2fly/v2ray-core.git
synced 2025-08-17 13:07:12 +00:00
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
|
||
|
}
|