improve i18n with gview

This commit is contained in:
john
2019-09-08 21:12:11 +08:00
parent 16cc3c0fca
commit 77a727e1d7
11 changed files with 98 additions and 19 deletions

View File

@ -0,0 +1,16 @@
package main
import (
"fmt"
"github.com/gogf/gf/encoding/gini"
)
func main() {
s := `
a = b
`
m, err := gini.Decode([]byte(s))
fmt.Println(err)
fmt.Println(m)
}