mirror of
https://gitee.com/johng/gf.git
synced 2024-12-02 20:28:17 +08:00
12 lines
186 B
Go
12 lines
186 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"github.com/gogf/gf/g"
|
|
)
|
|
|
|
// 演示在找不到配置文件时的错误提示
|
|
func main() {
|
|
fmt.Println(g.Config("none-exist-config.toml").Get("none"))
|
|
}
|