go-zero/tools/goctl/pkg/golang/format.go

13 lines
183 B
Go
Raw Normal View History

package golang
import goformat "go/format"
func FormatCode(code string) string {
ret, err := goformat.Source([]byte(code))
if err != nil {
return code
}
return string(ret)
}