2
0
mirror of https://github.com/acepanel/panel.git synced 2026-02-04 11:27:17 +08:00
Files
panel/config/panel.go
2024-06-25 03:37:37 +08:00

15 lines
249 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.17",
"ssl": config.Env("APP_SSL", false),
})
}