mirror of
https://github.com/acepanel/panel.git
synced 2026-02-04 13:47:15 +08:00
15 lines
255 B
Go
15 lines
255 B
Go
package config
|
|
|
|
import (
|
|
"github.com/goravel/framework/facades"
|
|
)
|
|
|
|
func init() {
|
|
config := facades.Config()
|
|
config.Add("panel", map[string]any{
|
|
"name": "耗子 Linux 面板",
|
|
"version": "v2.2.1",
|
|
"ssl": config.Env("APP_SSL", false),
|
|
})
|
|
}
|