mirror of
https://github.com/acepanel/panel.git
synced 2026-02-04 18:27:13 +08:00
18 lines
228 B
Go
18 lines
228 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()
|
|
}
|