mirror of
https://github.com/OpenListTeam/OpenList.git
synced 2025-09-20 12:46:17 +08:00
18 lines
356 B
Go
18 lines
356 B
Go
package driver
|
|
|
|
type Additional interface{}
|
|
|
|
type Item struct {
|
|
Name string `json:"name"`
|
|
Type string `json:"type"`
|
|
Default string `json:"default"`
|
|
Values string `json:"values"`
|
|
Required bool `json:"required"`
|
|
Help string `json:"help"`
|
|
}
|
|
|
|
type Items struct {
|
|
Main []Item `json:"main"`
|
|
Additional []Item `json:"additional"`
|
|
}
|