go 操作支持格式化代码

This commit is contained in:
白茶清欢 2022-05-22 22:09:38 +08:00
parent 0fe025ba1e
commit 68b298a21d

View File

@ -124,3 +124,12 @@ func (g *golang) GetRecommendGoProxyList() []string {
"https://goproxy.cn/", // 基于七牛云CDN
}
}
// FormatCode 格式化代码
//
// Author : go_developer@163.com<白茶清欢>
//
// Date : 22:09 2022/5/22
func (g *golang) FormatCode() *define.Result {
return Execute(g.workDir, g.goCmdPath, []string{"-w", "-l", "./*"})
}