opus-go/errors.go
2022-06-02 19:14:23 -04:00

8 lines
148 B
Go

package main
import "errors"
var (
errTooShortForTableOfContentsHeader = errors.New("Packet is too short to contain table of contents header")
)