mirror of
https://github.com/acepanel/panel.git
synced 2026-02-05 05:47:17 +08:00
18 lines
226 B
Go
18 lines
226 B
Go
package bootstrap
|
|
|
|
import (
|
|
"github.com/goravel/framework/foundation"
|
|
|
|
"panel/config"
|
|
)
|
|
|
|
func Boot() {
|
|
app := foundation.NewApplication()
|
|
|
|
//Bootstrap the application
|
|
app.Boot()
|
|
|
|
//Bootstrap the config.
|
|
config.Boot()
|
|
}
|