mirror of
				https://github.com/superseriousbusiness/gotosocial.git
				synced 2025-11-03 23:32:24 -06:00 
			
		
		
		
	* [feature] basic video support * fix missing semicolon * replace text shadow with stacked icons Co-authored-by: f0x <f0x@cthu.lu>
		
			
				
	
	
		
			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")
 | 
						|
)
 |