Files
kubevpn/pkg/driver/openvpn/other.go
2022-08-05 15:23:34 +08:00

13 lines
148 B
Go

//go:build !windows
// +build !windows
package openvpn
import (
"errors"
)
func Install() error {
return errors.New("not need to implement")
}