17 строки
272 B
Go
17 строки
272 B
Go
|
package network
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"net"
|
||
|
)
|
||
|
|
||
|
type dhcpClient interface {
|
||
|
DiscoverRequest(context.Context, net.HardwareAddr, string) error
|
||
|
}
|
||
|
|
||
|
type mockDHCP struct{}
|
||
|
|
||
|
func (netns *mockDHCP) DiscoverRequest(context.Context, net.HardwareAddr, string) error {
|
||
|
return nil
|
||
|
}
|