Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var Artisan = &console.Application{}
View Source
var DB *gorm.DB
View Source
var Route *gin.Engine
Functions ¶
This section is empty.
Types ¶
type ConfigFacade ¶
type ConfigFacade interface {
//Env Get config from env.
Env(envName string, defaultValue ...interface{}) interface{}
//Add Add config to application.
Add(name string, configuration map[string]interface{})
//Get Get config from application.
Get(path string, defaultValue ...interface{}) interface{}
//GetString Get string type config from application.
GetString(path string, defaultValue ...interface{}) string
//GetInt Get int type config from application.
GetInt(path string, defaultValue ...interface{}) int
//GetBool Get bool type config from application.
GetBool(path string, defaultValue ...interface{}) bool
}
var Config ConfigFacade
Click to show internal directories.
Click to hide internal directories.