Files
gf/.example/os/gview/resource/main3.go
2019-08-31 18:04:12 +08:00

19 lines
247 B
Go

package main
import (
"fmt"
"github.com/gogf/gf/frame/g"
"github.com/gogf/gf/os/gres"
_ "github.com/gogf/gf/os/gres/testdata"
)
func main() {
gres.Dump()
v := g.View()
s, err := v.Parse("index.html")
fmt.Println(err)
fmt.Println(s)
}