aboutsummaryrefslogtreecommitdiff
path: root/newspipe/controllers/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'newspipe/controllers/__init__.py')
-rw-r--r--newspipe/controllers/__init__.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/newspipe/controllers/__init__.py b/newspipe/controllers/__init__.py
new file mode 100644
index 00000000..9b193cc5
--- /dev/null
+++ b/newspipe/controllers/__init__.py
@@ -0,0 +1,18 @@
+from .feed import FeedController
+from .category import CategoryController
+from .article import ArticleController
+from .user import UserController
+from .icon import IconController
+from .bookmark import BookmarkController
+from .tag import BookmarkTagController
+
+
+__all__ = [
+ "FeedController",
+ "CategoryController",
+ "ArticleController",
+ "UserController",
+ "IconController",
+ "BookmarkController",
+ "BookmarkTagController",
+]
bgstack15