summaryrefslogtreecommitdiff
path: root/wsgi.py
diff options
context:
space:
mode:
authorAndré Glüpker <git@wgmd.de>2021-05-05 20:09:30 +0200
committerAndré Glüpker <git@wgmd.de>2021-05-05 20:09:30 +0200
commit5774dbfb2caa42cb55bafab98a40e47f395e44d9 (patch)
tree8294b7b6fefebc1befeed4104f3b5604683999a8 /wsgi.py
downloadrss-feeds-5774dbfb2caa42cb55bafab98a40e47f395e44d9.tar.gz
rss-feeds-5774dbfb2caa42cb55bafab98a40e47f395e44d9.tar.bz2
rss-feeds-5774dbfb2caa42cb55bafab98a40e47f395e44d9.zip
Initial commit of RSS converter application
Diffstat (limited to 'wsgi.py')
-rwxr-xr-xwsgi.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/wsgi.py b/wsgi.py
new file mode 100755
index 0000000..2371f9c
--- /dev/null
+++ b/wsgi.py
@@ -0,0 +1,6 @@
+#!/usr/bin/env python3
+
+import sys
+sys.path.append('./')
+
+from webapp import app as application