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

9 lines
224 B
Go
Raw Permalink Normal View History

2025-03-04 19:28:12 +08:00
package config
import "github.com/uozi-tech/cosy"
var (
e = cosy.NewErrorScope("config")
ErrPathIsNotUnderTheNginxConfDir = e.New(50006, "path: {0} is not under the nginx conf dir: {1}")
)