mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-07 10:47:48 -05:00
12 lines
173 B
Go
12 lines
173 B
Go
|
package dokodemo
|
||
|
|
||
|
import (
|
||
|
v2net "github.com/v2ray/v2ray-core/common/net"
|
||
|
)
|
||
|
|
||
|
type Config interface {
|
||
|
Address() v2net.Address
|
||
|
Network() v2net.NetworkList
|
||
|
Timeout() int
|
||
|
}
|