mirror of
https://github.com/kubenetworks/kubevpn.git
synced 2025-10-03 22:46:40 +08:00

refactor: update go mod library and refactor dev logic Co-authored-by: wencaiwulue <895703375@qq.com>
12 lines
152 B
Go
12 lines
152 B
Go
//go:build !windows
|
|
|
|
package manager
|
|
|
|
func trimExeSuffix(s string) (string, error) {
|
|
return s, nil
|
|
}
|
|
|
|
func addExeSuffix(s string) string {
|
|
return s
|
|
}
|