174644b63c
add openapi infra * add openapi infra Includes generated stubs and all deps * generatetolocation * basesetupoffunctionsandclient * round1controllertests * passintegrationtests * cleanupfromfullsuite * storedjson * fixjsonyaml * fixtests Approved-by: Michael McGuinness
11 lines
444 B
Go
11 lines
444 B
Go
/*
|
|
Package marshmallow provides a simple API to perform flexible and performant JSON unmarshalling.
|
|
Unlike other packages, marshmallow supports unmarshalling of some known and some unknown fields
|
|
with zero performance overhead nor extra coding needed. While unmarshalling,
|
|
marshmallow allows fully retaining the original data and access it via a typed struct and a
|
|
dynamic map.
|
|
|
|
https://github.com/perimeterx/marshmallow
|
|
*/
|
|
package marshmallow
|