Mirror of a distributed, offline-first bug tracker embedded in git
1package codegen 2 3type Model struct { 4 *NamedType 5 6 Fields []ModelField 7} 8 9type ModelField struct { 10 *Type 11 GQLName string 12 GoVarName string 13 GoFKName string 14 GoFKType string 15}