diff options
Diffstat (limited to 'system/admin/config/config.go')
-rw-r--r-- | system/admin/config/config.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/system/admin/config/config.go b/system/admin/config/config.go index 2e957ed..6c315f5 100644 --- a/system/admin/config/config.go +++ b/system/admin/config/config.go @@ -1,13 +1,13 @@ package config import ( - "github.com/bosssauce/ponzu/content" "github.com/bosssauce/ponzu/management/editor" + "github.com/bosssauce/ponzu/system/item" ) //Config represents the confirgurable options of the system type Config struct { - content.Item + item.Item editor editor.Editor Name string `json:"name"` @@ -19,7 +19,7 @@ type Config struct { CacheInvalidate []string `json:"cache"` } -// String partially implements content.Identifiable and overrides Item's String() +// String partially implements item.Identifiable and overrides Item's String() func (c *Config) String() string { return c.Name } // Editor partially implements editor.Editable |