Cog generates types with json struct tags:
type GeneratedStruct struct {
FieldOne int `json:"fieldOne"`
}
Several popular Go yaml libraries need yaml tags set as well to serialize and deserialize correctly. It would be nice to add those to the generated code.
Cog generates types with
jsonstruct tags:Several popular Go yaml libraries need
yamltags set as well to serialize and deserialize correctly. It would be nice to add those to the generated code.