mirror of
https://github.com/tim-beatham/smegmesh.git
synced 2024-12-15 02:50:44 +01:00
12 lines
262 B
Go
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
|
|
}
|