Properly return a string

This commit is contained in:
Ketchetwahmeegwun T. Southall 2022-03-02 01:19:20 -08:00
parent 2aa3e1bc90
commit bae17a4c0f

View File

@ -10,7 +10,7 @@ func Format(source string) interface{} {
if err != nil {
return err
}
return ret
return string(ret)
}
func main() {