Removed junk file

This commit is contained in:
John Washam
2016-07-05 12:48:28 -07:00
parent 63d087258c
commit a082f102f8

View File

@@ -1,12 +0,0 @@
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)