mirror of
https://codeberg.org/superseriousbusiness/gotosocial.git
synced 2025-04-05 00:05:18 +03: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")
|
|
)
|