aboutsummaryrefslogtreecommitdiff
path: root/src/web/views/api/v3/__init__.py
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2016-04-19 22:10:52 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2016-04-19 22:10:52 +0200
commit8f4418c2b0b1027032594bf8d02e68bcc0ad6316 (patch)
treede8b1a3127a105997023a818939d26b75e783bc9 /src/web/views/api/v3/__init__.py
parentAdded Flask-Restless dependency. (diff)
downloadnewspipe-8f4418c2b0b1027032594bf8d02e68bcc0ad6316.tar.gz
newspipe-8f4418c2b0b1027032594bf8d02e68bcc0ad6316.tar.bz2
newspipe-8f4418c2b0b1027032594bf8d02e68bcc0ad6316.zip
Added a blueprint for the Flask-Restless feed api.
Diffstat (limited to 'src/web/views/api/v3/__init__.py')
-rw-r--r--src/web/views/api/v3/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/web/views/api/v3/__init__.py b/src/web/views/api/v3/__init__.py
index 76aa1f19..04dd28ad 100644
--- a/src/web/views/api/v3/__init__.py
+++ b/src/web/views/api/v3/__init__.py
@@ -1,3 +1,3 @@
-from web.views.api.v3 import article
+from web.views.api.v3 import article, feed
-__all__ = ['article']
+__all__ = ['article', 'feed']
bgstack15