Files
net/http/dns.go
T
2025-10-19 13:05:29 +07:00

6 lines
75 B
Go

package http
type DNS interface {
GetIP(domain string) (string, error)
}