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 { type Model struct {
Name string Name string `json:"name"`
Fields []Field Fields []Field `json:"fields"`
} }
type Schema struct { type Scheme struct {
models []Model Models []Model `json:"models"`
} }