mirror of
https://github.com/goravel/goravel.git
synced 2025-09-26 20:51:19 +08:00
18 lines
225 B
Go
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()
|
|
}
|