mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2025-10-29 04:32:25 -05:00
8 lines
168 B
Go
8 lines
168 B
Go
package bitio
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrInvalidAlignment = errors.New("invalid alignment")
|
|
ErrDiscouragedReader = errors.New("discouraged reader implementation")
|
|
)
|