feat: adding options field to Field struct (#18)

This commit is contained in:
mehanizm
2023-07-09 22:31:45 +05:00
committed by GitHub

View File

@@ -23,6 +23,7 @@ type Field struct {
Type string `json:"type"`
Name string `json:"name"`
Description string `json:"description"`
Options map[string]interface{} `json:"options"`
}
type View struct {