mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-11-01 23:10:01 +00:00
380d83f9a9
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
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")
|
|
)
|