errors.go 302 B

12345678910
  1. package system
  2. import "github.com/uozi-tech/cosy"
  3. // System error definitions
  4. var (
  5. e = cosy.NewErrorScope("system")
  6. ErrInstalled = e.New(40301, "Nginx UI already installed")
  7. ErrInstallTimeout = e.New(40302, "installation is not allowed after 10 minutes of system startup")
  8. )