nginx_ui/nginx-ui-dev/internal/site/errors.go

11 lines
276 B
Go
Raw Permalink Normal View History

2025-03-04 19:28:12 +08:00
package site
import "github.com/uozi-tech/cosy"
var (
e = cosy.NewErrorScope("site")
ErrSiteNotFound = e.New(40401, "site not found")
ErrDstFileExists = e.New(50001, "destination file already exists")
ErrSiteIsEnabled = e.New(50002, "site is enabled")
)