mirror of
https://github.com/kubenetworks/kubevpn.git
synced 2026-04-23 16:12:50 +08:00
13 lines
148 B
Go
13 lines
148 B
Go
//go:build !windows
|
|
// +build !windows
|
|
|
|
package openvpn
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
func Install() error {
|
|
return errors.New("not need to implement")
|
|
}
|