优化可执行文件程序

This commit is contained in:
GoEdgeLab
2023-12-26 09:09:21 +08:00
parent 9256d37268
commit 510467ca20
8 changed files with 311 additions and 17 deletions

View File

@@ -0,0 +1,10 @@
// Copyright 2023 GoEdge CDN goedge.cdn@gmail.com. All rights reserved. Official site: https://goedge.cn .
//go:build !linux
package executils
import "os/exec"
func LookPath(file string) (string, error) {
return exec.LookPath(file)
}