| 171 | ) |
| 172 | |
| 173 | type Option struct { |
| 174 | Type string `json:"type"` // "boolean" or "string" |
| 175 | Proposals []string `json:"proposals"` |
| 176 | Enum []string `json:"enum"` |
| 177 | Default any `json:"default"` // boolean or string |
| 178 | Description string `json:"description"` |
| 179 | } |
| 180 | |
| 181 | type Spec struct { |
| 182 | ID string `json:"id"` |
nothing calls this directly
no outgoing calls
no test coverage detected