feat: get type from field's type

This commit is contained in:
Noah Hsu
2022-06-08 16:32:20 +08:00
parent ae755db2d2
commit ba648fa10c
3 changed files with 17 additions and 3 deletions

View File

@ -2,6 +2,15 @@ package driver
type Additional interface{}
type Select string
const (
TypeString = "string"
TypeSelect = "select"
TypeBool = "bool"
TypeText = "text"
)
type Item struct {
Name string `json:"name"`
Type string `json:"type"`