* 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)
|
|
}
|