mirror of
https://gitee.com/johng/gf.git
synced 2024-12-04 05:07:44 +08:00
14 lines
194 B
Go
14 lines
194 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"gitee.com/johng/gf/g"
|
|
)
|
|
|
|
// 使用默认的config.toml配置文件读取配置
|
|
func main() {
|
|
c := g.Config()
|
|
fmt.Println(c.GetArray("memcache"))
|
|
}
|
|
|