mirror of
https://gitee.com/johng/gf.git
synced 2024-12-05 05:37:55 +08:00
13 lines
215 B
Go
13 lines
215 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"gitee.com/johng/gf/g/os/gcfg"
|
|
)
|
|
|
|
func main() {
|
|
c := gcfg.New("/home/john/Workspace/Go/GOPATH/src/gitee.com/johng/gf/geg/os/gcfg")
|
|
fmt.Println(c.GetArray("memcache"))
|
|
}
|
|
|