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__.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/web/controllers/__init__.py b/src/web/controllers/__init__.py
index dd497e9a..a1b89ea8 100644
--- a/src/web/controllers/__init__.py
+++ b/src/web/controllers/__init__.py
@@ -3,8 +3,7 @@ from .category import CategoryController
from .article import ArticleController
from .user import UserController
from .icon import IconController
-from .bookmark import BookmarkController
__all__ = ['FeedController', 'CategoryController', 'ArticleController',
- 'UserController', 'IconController', 'BookmarkController']
+ 'UserController', 'IconController']
bgstack15