优化本地mysql服务自动启动逻辑

This commit is contained in:
GoEdgeLab
2023-07-05 11:14:51 +08:00
parent 4a44309368
commit 2ccd0db52f
5 changed files with 166 additions and 8 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)
}