2
0
mirror of https://github.com/acepanel/panel.git synced 2026-02-05 04:37:17 +08:00
Files
panel/bootstrap/app.go
2023-08-13 22:38:39 +08:00

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()
}