mirror of
https://github.com/0xJacky/nginx-ui.git
synced 2025-05-12 02:45:49 +02:00
10 lines
302 B
Go
10 lines
302 B
Go
package system
|
|
|
|
import "github.com/uozi-tech/cosy"
|
|
|
|
// System error definitions
|
|
var (
|
|
e = cosy.NewErrorScope("system")
|
|
ErrInstalled = e.New(40301, "Nginx UI already installed")
|
|
ErrInstallTimeout = e.New(40302, "installation is not allowed after 10 minutes of system startup")
|
|
)
|