mirror of
https://github.com/Chenyu550/alist-fork.git
synced 2025-06-10 14:46:53 -04:00
14 lines
263 B
Go
14 lines
263 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"`
|
|
Desc string `json:"desc"`
|
|
}
|