Files
gluetun/internal/updater/alias.go
2020-10-20 02:45:28 +00:00

11 lines
135 B
Go

package updater
import (
"context"
"net"
)
type (
lookupIPFunc func(ctx context.Context, host string) (ips []net.IP, err error)
)