mirror of
https://github.com/luscis/openlan.git
synced 2025-12-24 11:10:54 +08:00
10 lines
179 B
Go
10 lines
179 B
Go
//go:build !linux && !darwin && !windows
|
|
|
|
package network
|
|
|
|
import "github.com/luscis/openlan/pkg/water"
|
|
|
|
func WaterNew(c TapConfig) (*water.Interface, error) {
|
|
return nil, nil
|
|
}
|