mirror of
https://github.com/kubenetworks/kubevpn.git
synced 2025-12-24 11:51:13 +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")
|
|
}
|