aboutsummaryrefslogtreecommitdiff
path: root/src/web/controllers/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/web/controllers/__init__.py')
-rw-r--r--src/web/controllers/__init__.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/web/controllers/__init__.py b/src/web/controllers/__init__.py
new file mode 100644
index 00000000..ad77fa1d
--- /dev/null
+++ b/src/web/controllers/__init__.py
@@ -0,0 +1,8 @@
+from .feed import FeedController
+from .article import ArticleController
+from .user import UserController
+from .icon import IconController
+
+
+__all__ = ['FeedController', 'ArticleController', 'UserController',
+ 'IconController']
bgstack15