2021-06-04 18:27:02 +03:00
|
|
|
package decoder
|
|
|
|
|
2021-06-06 05:11:04 +03:00
|
|
|
type OptionFlag int
|
|
|
|
|
|
|
|
const (
|
|
|
|
FirstWinOption OptionFlag = 1 << iota
|
|
|
|
)
|
|
|
|
|
2021-06-04 18:27:02 +03:00
|
|
|
type Option struct {
|
2021-06-06 05:11:04 +03:00
|
|
|
Flag OptionFlag
|
2021-06-04 18:27:02 +03:00
|
|
|
}
|