smegmesh/pkg/wg/stubs.go
2023-11-05 18:03:58 +00:00

12 lines
262 B
Go

package wg
type WgInterfaceManipulatorStub struct{}
func (i *WgInterfaceManipulatorStub) CreateInterface(params *CreateInterfaceParams) error {
return nil
}
func (i *WgInterfaceManipulatorStub) EnableInterface(ifName string, ip string) error {
return nil
}