You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
183 B
Go
13 lines
183 B
Go
2 years ago
|
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)
|
||
|
}
|