aboutsummaryrefslogtreecommitdiff
path: root/src/web/views/api/v2/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/web/views/api/v2/__init__.py')
-rw-r--r--src/web/views/api/v2/__init__.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/web/views/api/v2/__init__.py b/src/web/views/api/v2/__init__.py
new file mode 100644
index 00000000..46760261
--- /dev/null
+++ b/src/web/views/api/v2/__init__.py
@@ -0,0 +1,3 @@
+from web.views.api.v2 import article, feed, category
+
+__all__ = ['article', 'feed', 'category']
bgstack15