mirror of
https://github.com/v2fly/v2ray-core.git
synced 2025-02-20 23:47:21 -05:00
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)
|
||
|
}
|