mirror of
https://github.com/acepanel/panel.git
synced 2026-02-05 04:37:17 +08:00
13 lines
163 B
Go
13 lines
163 B
Go
package internal
|
|
|
|
// 定义面板状态常量
|
|
const (
|
|
StatusNormal = iota
|
|
StatusMaintain
|
|
StatusClosed
|
|
StatusUpgrade
|
|
StatusFailed
|
|
)
|
|
|
|
var Status = StatusNormal
|