aboutsummaryrefslogtreecommitdiff
path: root/src/web/views/api/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/web/views/api/__init__.py')
-rw-r--r--src/web/views/api/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/web/views/api/__init__.py b/src/web/views/api/__init__.py
index 24472ebe..ed3bd702 100644
--- a/src/web/views/api/__init__.py
+++ b/src/web/views/api/__init__.py
@@ -26,6 +26,6 @@ __revision__ = "$Date: 2014/07/05 $"
__copyright__ = "Copyright (c) Cedric Bonhomme"
__license__ = "AGPLv3"
-from web.views.api import article, feed
+from web.views.api import article, feed, category
-__all__ = ['article', 'feed']
+__all__ = ['article', 'feed', 'category']
bgstack15