feat(apps): more work on apps and how apps can include panels

This commit is contained in:
Torkel Ödegaard
2016-01-19 18:18:53 +01:00
parent 6b85a6fd78
commit 7a26d309b1
11 changed files with 96 additions and 72 deletions

View File

@ -11,12 +11,13 @@ type PluginLoader interface {
}
type PluginBase struct {
Type string `json:"type"`
Name string `json:"name"`
Id string `json:"id"`
App string `json:"app"`
Info PluginInfo `json:"info"`
PluginDir string `json:"-"`
Type string `json:"type"`
Name string `json:"name"`
Id string `json:"id"`
Info PluginInfo `json:"info"`
IncludedInAppId string `json:"-"`
PluginDir string `json:"-"`
}
type PluginInfo struct {