From b2618e9404b84cc62d4becb02436233a0d53b375 Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Wed, 25 Nov 2015 22:45:43 +0100 Subject: Rfactorization. Just a start... --- web/controllers/__init__.py | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 web/controllers/__init__.py (limited to 'web/controllers/__init__.py') diff --git a/web/controllers/__init__.py b/web/controllers/__init__.py new file mode 100644 index 00000000..ad77fa1d --- /dev/null +++ b/web/controllers/__init__.py @@ -0,0 +1,8 @@ +from .feed import FeedController +from .article import ArticleController +from .user import UserController +from .icon import IconController + + +__all__ = ['FeedController', 'ArticleController', 'UserController', + 'IconController'] -- cgit