smegmesh/pkg/wg/stubs.go

12 lines
262 B
Go
Raw Normal View History

2023-11-05 19:03:58 +01:00
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
}