mirror of
https://github.com/acepanel/panel.git
synced 2026-02-04 20:57:19 +08:00
14 lines
211 B
Go
14 lines
211 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.12",
|
|
})
|
|
}
|