1
0
Fork 0

line ending fix

This commit is contained in:
Henrik Hautakoski 2025-10-12 23:52:30 +02:00
parent a0e4de3d19
commit 0c347312bd
26 changed files with 1053 additions and 1046 deletions

View file

@ -1,19 +1,19 @@
package mock
import (
"context"
"net"
)
type Service struct {
IP net.IP
Error error
}
func (s Service) Name() string {
return "mock"
}
func (s Service) Lookup(ctx context.Context) (net.IP, error) {
return s.IP, s.Error
}
package mock
import (
"context"
"net"
)
type Service struct {
IP net.IP
Error error
}
func (s Service) Name() string {
return "mock"
}
func (s Service) Lookup(ctx context.Context) (net.IP, error) {
return s.IP, s.Error
}