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

11 lines
288 B
Go
Raw Permalink Normal View History

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