mirror of https://github.com/v2ray/v2ray-core
11 lines
118 B
Go
11 lines
118 B
Go
![]() |
package app
|
||
|
|
||
|
import (
|
||
|
"net"
|
||
|
)
|
||
|
|
||
|
type DnsCache interface {
|
||
|
Get(domain string) net.IP
|
||
|
Add(domain string, ip net.IP)
|
||
|
}
|