6 lines
75 B
Go
6 lines
75 B
Go
package http
|
|
|
|
type DNS interface {
|
|
GetIP(domain string) (string, error)
|
|
}
|