mirror of
https://github.com/acepanel/panel.git
synced 2026-02-06 06:17:16 +08:00
17 lines
314 B
Go
17 lines
314 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.26",
|
|
"ssl": config.Env("APP_SSL", false),
|
|
// 安全入口
|
|
"entrance": config.Env("APP_ENTRANCE", "/"),
|
|
})
|
|
}
|