feat(cli): download all plugin dependencies

This commit is contained in:
bergquist
2016-09-15 14:34:58 +02:00
parent fc67ab1dce
commit 3c966caa23
2 changed files with 6 additions and 6 deletions

View File

@@ -9,11 +9,11 @@ type InstalledPlugin struct {
Name string `json:"name"`
Type string `json:"type"`
Info PluginInfo `json:"info"`
Dependency Dependency `json:"dependencies"`
Info PluginInfo `json:"info"`
Dependencies Dependencies `json:"dependencies"`
}
type Dependency struct {
type Dependencies struct {
GrafanaVersion string `json:"grafanaVersion"`
Plugins []Plugin `json:"plugins"`
}