feat: update data scheme

This commit is contained in:
2025-02-01 23:11:09 +07:00
parent cdf01dd57f
commit 805596aed2

View File

@@ -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"`
}