2
0
mirror of https://github.com/acepanel/panel.git synced 2026-02-05 00:39:32 +08:00
Files
panel/bootstrap/app.go
2023-06-22 00:09:56 +08:00

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