Files
opencloud/vendor/github.com/goccy/go-json/internal/decoder/option.go
Jörn Friedrich Dreyer ca113f5751 bump dependencies
Signed-off-by: Jörn Friedrich Dreyer <jfd@butonic.de>
2024-10-18 17:35:30 +02:00

18 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
}