aboutsummaryrefslogtreecommitdiff
path: root/src/web/views/api/v3/__init__.py
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2016-04-19 12:46:08 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2016-04-19 12:46:08 +0200
commitf5e2a8a4227de1e49598843294b7a5e3d82e273f (patch)
tree46a6e19fe8f50fc8d9ab88f7113c3553c4cc0d89 /src/web/views/api/v3/__init__.py
parentFixed bad links to the logo. (diff)
downloadnewspipe-f5e2a8a4227de1e49598843294b7a5e3d82e273f.tar.gz
newspipe-f5e2a8a4227de1e49598843294b7a5e3d82e273f.tar.bz2
newspipe-f5e2a8a4227de1e49598843294b7a5e3d82e273f.zip
Test preprocessors with Flask-Restless.
Diffstat (limited to 'src/web/views/api/v3/__init__.py')
-rw-r--r--src/web/views/api/v3/__init__.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/web/views/api/v3/__init__.py b/src/web/views/api/v3/__init__.py
index e69de29b..76aa1f19 100644
--- a/src/web/views/api/v3/__init__.py
+++ b/src/web/views/api/v3/__init__.py
@@ -0,0 +1,3 @@
+from web.views.api.v3 import article
+
+__all__ = ['article']
bgstack15