Files
v2fly/app/dns.go
T
2015-12-06 11:00:10 +01:00

11 lines
118 B
Go

package app
import (
"net"
)
type DnsCache interface {
Get(domain string) net.IP
Add(domain string, ip net.IP)
}