Files
goravel/bootstrap/app.go
Wenbo Han 01c87faebf Upgrade v1.8.0 (#26)
* Upgrade v1.8.0
2023-01-30 21:40:48 +08:00

18 lines
225 B
Go

package bootstrap
import (
"github.com/goravel/framework/foundation"
"goravel/config"
)
func Boot() {
app := foundation.Application{}
//Bootstrap the application
app.Boot()
//Bootstrap the config.
config.Boot()
}