feat(update checks): started work on update checks

This commit is contained in:
Torkel Ödegaard
2016-04-11 12:21:48 -04:00
parent 8047f902a5
commit b4a8c227cc
8 changed files with 142 additions and 7 deletions

View File

@ -22,6 +22,9 @@ var (
Apps map[string]*AppPlugin
Plugins map[string]*PluginBase
PluginTypes map[string]interface{}
GrafanaLatestVersion string
GrafanaHasUpdate bool
)
type PluginScanner struct {
@ -70,6 +73,7 @@ func Init() error {
app.initApp()
}
StartPluginUpdateChecker()
return nil
}