mirror of
https://gitee.com/johng/gf
synced 2026-06-07 10:22:11 +08:00
13 lines
193 B
Go
13 lines
193 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/gogf/gf/frame/g"
|
|
)
|
|
|
|
// 演示在找不到配置文件时的错误提示
|
|
func main() {
|
|
fmt.Println(g.Config("none-exist-config.toml").Get("none"))
|
|
}
|