mirror of
				https://github.com/superseriousbusiness/gotosocial.git
				synced 2025-11-04 10:02:25 -06:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
	
		
			221 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
	
		
			221 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package decoder
 | 
						|
 | 
						|
import "context"
 | 
						|
 | 
						|
type OptionFlags uint8
 | 
						|
 | 
						|
const (
 | 
						|
	FirstWinOption OptionFlags = 1 << iota
 | 
						|
	ContextOption
 | 
						|
	PathOption
 | 
						|
)
 | 
						|
 | 
						|
type Option struct {
 | 
						|
	Flags   OptionFlags
 | 
						|
	Context context.Context
 | 
						|
	Path    *Path
 | 
						|
}
 |