errors.go 276 B

12345678910
  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. )