diff options
author | Steve Manuel <nilslice@gmail.com> | 2016-12-17 00:42:46 -0800 |
---|---|---|
committer | Steve Manuel <nilslice@gmail.com> | 2016-12-17 00:42:46 -0800 |
commit | b564e0ce57730af0afa9fa43b26aaf4d49539c86 (patch) | |
tree | 7066c3f2df77d1b3eaa40489afb4587725cee36c /management/editor/editor.go | |
parent | ab793d204399ea0b46ec1938cc23a4d84ea045b4 (diff) |
moving interfaces around which complicated import cycles
Diffstat (limited to 'management/editor/editor.go')
-rw-r--r-- | management/editor/editor.go | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/management/editor/editor.go b/management/editor/editor.go index 6b55a38..7194c27 100644 --- a/management/editor/editor.go +++ b/management/editor/editor.go @@ -13,12 +13,6 @@ type Editable interface { MarshalEditor() ([]byte, error) } -// Sortable ensures data is sortable by time -type Sortable interface { - Time() int64 - Touch() int64 -} - // Mergeable allows external post content to be approved and published through // the public-facing API type Mergeable interface { |