mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-01-23 17:20:24 +08:00
555c4ecd1a
* chore: fix typo * fix: quickstart in dir with go.mod * fix: runner failed * chore: refine code * chore: simplify quickstart mono
13 lines
183 B
Go
13 lines
183 B
Go
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)
|
|
}
|