nginx_ui/nginx-ui-dev/internal/nginx/errors.go
2025-03-04 11:28:12 +00:00

9 lines
150 B
Go

package nginx
import "github.com/uozi-tech/cosy"
var (
e = cosy.NewErrorScope("nginx")
ErrBlockIsNil = e.New(50001, "block is nil")
)