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

9 lines
150 B
Go
Raw Normal View History

2025-03-04 19:28:12 +08:00
package nginx
import "github.com/uozi-tech/cosy"
var (
e = cosy.NewErrorScope("nginx")
ErrBlockIsNil = e.New(50001, "block is nil")
)