mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2024-11-13 02:55:18 +08:00
15 lines
259 B
Go
15 lines
259 B
Go
package constant
|
|
|
|
const (
|
|
NginxScopeServer = "server"
|
|
NginxScopeHttp = "http"
|
|
NginxScopeOut = "out"
|
|
|
|
NginxReload = "reload"
|
|
NginxCheck = "check"
|
|
NginxRestart = "restart"
|
|
|
|
ConfigNew = "add"
|
|
ConfigUpdate = "update"
|
|
ConfigDel = "delete"
|
|
)
|