1
0
forked from extern/smegmesh
smegmesh/pkg/wg/stubs.go
Tim Beatham 06542da03c main
Fixed problems with timestamp not updating
2023-11-21 13:31:34 +00:00

16 lines
343 B
Go

package wg
type WgInterfaceManipulatorStub struct{}
func (i *WgInterfaceManipulatorStub) CreateInterface(port int) (string, error) {
return "", nil
}
func (i *WgInterfaceManipulatorStub) AddAddress(ifName string, addr string) error {
return nil
}
func (i *WgInterfaceManipulatorStub) RemoveInterface(ifName string) error {
return nil
}