diff --git a/internal/extras/mirror/export.go b/internal/extras/mirror/export.go index c90da30..6c13af1 100644 --- a/internal/extras/mirror/export.go +++ b/internal/extras/mirror/export.go @@ -16,10 +16,10 @@ type Field struct { } type Model struct { - Name string - Fields []Field + Name string `json:"name"` + Fields []Field `json:"fields"` } -type Schema struct { - models []Model +type Scheme struct { + Models []Model `json:"models"` }