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__.py12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/web/controllers/__init__.py b/src/web/controllers/__init__.py
deleted file mode 100644
index 5fbc2619..00000000
--- a/src/web/controllers/__init__.py
+++ /dev/null
@@ -1,12 +0,0 @@
-from .feed import FeedController
-from .category import CategoryController
-from .article import ArticleController
-from .user import UserController
-from .icon import IconController
-from .bookmark import BookmarkController
-from .tag import BookmarkTagController
-
-
-__all__ = ['FeedController', 'CategoryController', 'ArticleController',
- 'UserController', 'IconController', 'BookmarkController',
- 'BookmarkTagController']
bgstack15