vRp.CD2g_test/utils/super/gofmt.go

10 lines
160 B
Go

package super
import "os/exec"
// GoFormat go 代码格式化
func GoFormat(filePath string) {
cmd := exec.Command("gofmt", "-w", filePath)
_ = cmd.Run()
}