mirror of
https://github.com/teacat/chaturbate-dvr.git
synced 2025-10-29 16:59:59 +00:00
14 lines
482 B
Go
14 lines
482 B
Go
package internal
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrChannelExists = errors.New("channel exists")
|
|
ErrChannelNotFound = errors.New("channel not found")
|
|
ErrCloudflareBlocked = errors.New("blocked by Cloudflare; try with `-cookies` and `-user-agent`")
|
|
ErrChannelOffline = errors.New("channel offline")
|
|
ErrPrivateStream = errors.New("channel went offline or private")
|
|
ErrPaused = errors.New("channel paused")
|
|
ErrStopped = errors.New("channel stopped")
|
|
)
|