1
0
Fork 0

fix unix line endings

This commit is contained in:
Henrik Hautakoski 2026-02-19 10:37:42 +01:00
parent b53e0bb9c7
commit c955b3ee3c
24 changed files with 1044 additions and 1044 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
}