diff options
author | Steve Manuel <nilslice@gmail.com> | 2016-09-19 02:09:29 -0700 |
---|---|---|
committer | Steve Manuel <nilslice@gmail.com> | 2016-09-19 02:09:29 -0700 |
commit | 2ed153f8d287b3ffb5e8d1667ab51c922d82c504 (patch) | |
tree | 8bde4e8865e5502ff72487252bcd5fcc09cd89c2 /content/types.go | |
parent | d62f31d1932125db59c4cf813c54d95a4a0200ee (diff) |
reorganizing files and dir structure. adding initial (incomplete) management, types, system and db functionality.
Diffstat (limited to 'content/types.go')
-rw-r--r-- | content/types.go | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/content/types.go b/content/types.go new file mode 100644 index 0000000..778f742 --- /dev/null +++ b/content/types.go @@ -0,0 +1,7 @@ +package content + +import "github.com/nilslice/cms/management/editor" + +// Types is a map used to reference a type name to its actual Editable type +// mainly for lookups in /admin route based utilities +var Types = make(map[string]editor.Editable) |