errors.go 370 B

1234567891011
  1. package site
  2. import "github.com/uozi-tech/cosy"
  3. var (
  4. e = cosy.NewErrorScope("site")
  5. ErrSiteNotFound = e.New(40401, "site not found")
  6. ErrDstFileExists = e.New(50001, "destination file already exists")
  7. ErrSiteIsEnabled = e.New(50002, "site is enabled")
  8. ErrSiteIsInMaintenance = e.New(50003, "site is in maintenance mode")
  9. )