migrate go version to 1.17

This commit is contained in:
tsmethurst 2021-09-10 10:46:04 +02:00
commit 0b92f54f87
281 changed files with 11846 additions and 12563 deletions

View file

@ -0,0 +1,15 @@
package decoder
import "context"
type OptionFlags uint8
const (
FirstWinOption OptionFlags = 1 << iota
ContextOption
)
type Option struct {
Flags OptionFlags
Context context.Context
}