errors.go 288 B

12345678910
  1. package stream
  2. import "github.com/uozi-tech/cosy"
  3. var (
  4. e = cosy.NewErrorScope("stream")
  5. ErrStreamNotFound = e.New(40401, "stream not found")
  6. ErrDstFileExists = e.New(50001, "destination file already exists")
  7. ErrStreamIsEnabled = e.New(50002, "stream is enabled")
  8. )