mirror of
https://github.com/harshabose/transcode.git
synced 2025-10-10 14:20:04 +08:00
9 lines
252 B
Go
9 lines
252 B
Go
package internal
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrorElementUnallocated = errors.New("encountered nil in the buffer. this should not happen. check usage")
|
|
ErrorChannelBufferClose = errors.New("channel buffer has be closed. cannot perform this operation")
|
|
)
|