mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-11-01 15:00:00 +00:00
9 lines
168 B
Go
9 lines
168 B
Go
|
package bitio
|
||
|
|
||
|
import "errors"
|
||
|
|
||
|
var (
|
||
|
ErrInvalidAlignment = errors.New("invalid alignment")
|
||
|
ErrDiscouragedReader = errors.New("discouraged reader implementation")
|
||
|
)
|