As deepmap/oapi-codegen didn't work with this newer version, upgrade to oapi-codegen/oapi-codegen v2. Mitigating CVE-2025-30153
10 lines
444 B
Go
10 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
|