mirror of
https://github.com/langhuihui/monibuca.git
synced 2025-09-27 03:25:56 +08:00
26 lines
1.1 KiB
Go
26 lines
1.1 KiB
Go
package pkg
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrNotFound = errors.New("not found")
|
|
ErrStreamExist = errors.New("stream exist")
|
|
ErrKick = errors.New("kick")
|
|
ErrDiscard = errors.New("discard")
|
|
ErrPublishTimeout = errors.New("publish timeout")
|
|
ErrPublishIdleTimeout = errors.New("publish idle timeout")
|
|
ErrPublishDelayCloseTimeout = errors.New("publish delay close timeout")
|
|
ErrPushRemoteURLExist = errors.New("push remote url exist")
|
|
ErrSubscribeTimeout = errors.New("subscribe timeout")
|
|
ErrRestart = errors.New("restart")
|
|
ErrInterrupt = errors.New("interrupt")
|
|
ErrUnsupportCodec = errors.New("unsupport codec")
|
|
ErrMuted = errors.New("muted")
|
|
ErrNoTrack = errors.New("no track")
|
|
ErrNoDB = errors.New("no db")
|
|
ErrLost = errors.New("lost")
|
|
ErrSeek = errors.New("seek")
|
|
ErrRecordSamePath = errors.New("record same path")
|
|
ErrTransformSame = errors.New("transform same")
|
|
)
|