2
0
mirror of https://github.com/acepanel/panel.git synced 2026-02-08 14:14:28 +08:00
Files
panel/config/panel.go
耗子 c4199dad4e feat: update
1. panel entrance
2. optimize cli
3. website service init
2023-07-08 02:26:42 +08:00

14 lines
204 B
Go

package config
import (
"github.com/goravel/framework/facades"
)
func init() {
config := facades.Config()
config.Add("panel", map[string]any{
"name": "耗子面板",
"version": "2.0.0",
})
}