mirror of
https://gitee.com/johng/gf
synced 2026-07-07 06:15:15 +08:00
19 lines
247 B
Go
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)
|
|
}
|