blob: e41f876b03a9f877c30ca4d49cea90e7b892dbb9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
  | 
package decoder
import "context"
type OptionFlags uint8
const (
	FirstWinOption OptionFlags = 1 << iota
	ContextOption
)
type Option struct {
	Flags   OptionFlags
	Context context.Context
}
 
  |