mirror of
https://github.com/superseriousbusiness/gotosocial
synced 2025-02-02 10:26:56 +01: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")
|
|
)
|