17 lines
301 B
Go
17 lines
301 B
Go
package config
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/gogf/gf/v2/frame/g"
|
|
"github.com/gogf/gf/v2/os/gcfg"
|
|
"github.com/gogf/gf/v2/os/genv"
|
|
)
|
|
|
|
func init() {
|
|
env := genv.Get("APP_ENV", "").String()
|
|
if env != "" {
|
|
g.Cfg().GetAdapter().(*gcfg.AdapterFile).SetFileName(fmt.Sprintf("config-%s.yml", env))
|
|
}
|
|
}
|