2
0
mirror of https://github.com/acepanel/panel.git synced 2026-02-06 00:17:20 +08:00
Files
panel/config/panel.go
2023-10-27 02:58:59 +08:00

14 lines
210 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.1.3",
})
}