From 2503024ef311ba241518ae0bcb4212bdec6c4915 Mon Sep 17 00:00:00 2001 From: Elliot Whitehead Date: Tue, 6 Jun 2017 20:26:20 +0000 Subject: [PATCH] Add WSGI application file --- wsgi.py | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 wsgi.py diff --git a/wsgi.py b/wsgi.py new file mode 100644 index 0000000..0d5cb7c --- /dev/null +++ b/wsgi.py @@ -0,0 +1,4 @@ +from etw import app + +if __name__ == "__main__": + app.run()