Use Flask for Python environment

Flask gives us easy routing support, and simple interface for getting
at request data.
This commit is contained in:
Soam Vasani
2016-11-19 20:04:46 -08:00
parent 8a9559be1f
commit 640e65f35f
4 changed files with 38 additions and 43 deletions
+2 -2
View File
@@ -1,2 +1,2 @@
def main(context):
return "Hello, world!"
def main():
return "Hello, world!\n"