mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-10 08:20:23 +00:00
11 lines
222 B
Go
11 lines
222 B
Go
package tests
|
|
|
|
//easyjson:json
|
|
type SnakeStruct struct {
|
|
WeirdHTTPStuff bool
|
|
CustomNamedField string `json:"cUsToM"`
|
|
}
|
|
|
|
var snakeStructValue SnakeStruct
|
|
var snakeStructString = `{"weird_http_stuff":false,"cUsToM":""}`
|