aboutsummaryrefslogtreecommitdiff
path: root/src/web/controllers/__init__.py
blob: dd497e9a233bf3a0b87285e0b5987356311f49b5 (plain)
1
2
3
4
5
6
7
8
9
10
from .feed import FeedController
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']
bgstack15