Add generated file
This PR adds generated files under pkg/client and vendor folder.
This commit is contained in:
26
vendor/github.com/mailru/easyjson/tests/errors.go
generated
vendored
Normal file
26
vendor/github.com/mailru/easyjson/tests/errors.go
generated
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
package tests
|
||||
|
||||
//easyjson:json
|
||||
type ErrorIntSlice []int
|
||||
|
||||
//easyjson:json
|
||||
type ErrorBoolSlice []bool
|
||||
|
||||
//easyjson:json
|
||||
type ErrorUintSlice []uint
|
||||
|
||||
//easyjson:json
|
||||
type ErrorStruct struct {
|
||||
Int int `json:"int"`
|
||||
String string `json:"string"`
|
||||
Slice []int `json:"slice"`
|
||||
IntSlice []int `json:"int_slice"`
|
||||
}
|
||||
|
||||
type ErrorNestedStruct struct {
|
||||
ErrorStruct ErrorStruct `json:"error_struct"`
|
||||
Int int `json:"int"`
|
||||
}
|
||||
|
||||
//easyjson:json
|
||||
type ErrorIntMap map[uint32]string
|
Reference in New Issue
Block a user