mirror of
https://gitee.com/johng/gf
synced 2026-06-26 09:27:31 +08:00
14 lines
188 B
Go
14 lines
188 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/gogf/gf/frame/g"
|
|
)
|
|
|
|
// 使用默认的config.toml配置文件读取配置
|
|
func main() {
|
|
c := g.Config()
|
|
fmt.Println(c.GetArray("memcache"))
|
|
}
|