2
0
mirror of https://github.com/acepanel/panel.git synced 2026-02-04 14:57:16 +08:00
Files
panel/config/panel.go
2024-07-28 16:46:58 +08:00

16 lines
299 B
Go

package config
import (
"github.com/goravel/framework/facades"
)
func init() {
config := facades.Config()
config.Add("panel", map[string]any{
"name": "耗子面板",
"version": "v2.2.27",
"ssl": config.Env("APP_SSL", false),
"entrance": config.Env("APP_ENTRANCE", "/"),
})
}