aboutsummaryrefslogtreecommitdiff
path: root/web/controllers/__init__.py
blob: ad77fa1d879ad5fde4dc323e1b5ef44b25996d82 (plain)
1
2
3
4
5
6
7
8
from .feed import FeedController
from .article import ArticleController
from .user import UserController
from .icon import IconController


__all__ = ['FeedController', 'ArticleController', 'UserController',
           'IconController']
bgstack15