mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-11-01 15:00:00 +00:00
2bbc64be43
* [feature] basic video support * fix missing semicolon * replace text shadow with stacked icons Co-authored-by: f0x <f0x@cthu.lu>
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")
|
|
)
|