Added merged junk file

This commit is contained in:
John Washam
2016-07-05 12:48:11 -07:00
parent 8993f24407
commit 63d087258c

12
index.py Normal file
View File

@@ -0,0 +1,12 @@
from flask import Flask
app = Flask(__name__)
@app.route('/')
def cs_flash_cards():
return 'Hello World, you ready to learn?'
if __name__ == '__main__':
app.run(host='0.0.0.0', port=8080)