mirror of
https://github.com/kubenetworks/kubevpn.git
synced 2025-10-29 01:43:18 +08:00
12 lines
129 B
Go
12 lines
129 B
Go
//go:build !windows
|
|
|
|
package openvpn
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
func Install() error {
|
|
return errors.New("not need to implement")
|
|
}
|