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, 2 insertions, 1 deletions
diff --git a/src/web/controllers/__init__.py b/src/web/controllers/__init__.py
index a1b89ea8..dd497e9a 100644
--- a/src/web/controllers/__init__.py
+++ b/src/web/controllers/__init__.py
@@ -3,7 +3,8 @@ 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']
+ 'UserController', 'IconController', 'BookmarkController']
bgstack15