实现基础web服务器
This commit is contained in:
17
vendor/github.com/goccy/go-json/internal/decoder/option.go
generated
vendored
Normal file
17
vendor/github.com/goccy/go-json/internal/decoder/option.go
generated
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
package decoder
|
||||
|
||||
import "context"
|
||||
|
||||
type OptionFlags uint8
|
||||
|
||||
const (
|
||||
FirstWinOption OptionFlags = 1 << iota
|
||||
ContextOption
|
||||
PathOption
|
||||
)
|
||||
|
||||
type Option struct {
|
||||
Flags OptionFlags
|
||||
Context context.Context
|
||||
Path *Path
|
||||
}
|
||||
Reference in New Issue
Block a user