2021-08-30 19:45:06 +02:00
|
|
|
package decoder
|
|
|
|
|
|
|
|
import "context"
|
|
|
|
|
|
|
|
type OptionFlags uint8
|
|
|
|
|
|
|
|
const (
|
|
|
|
FirstWinOption OptionFlags = 1 << iota
|
|
|
|
ContextOption
|
2023-03-17 13:25:01 +01:00
|
|
|
PathOption
|
2021-08-30 19:45:06 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
type Option struct {
|
|
|
|
Flags OptionFlags
|
|
|
|
Context context.Context
|
2023-03-17 13:25:01 +01:00
|
|
|
Path *Path
|
2021-08-30 19:45:06 +02:00
|
|
|
}
|