Barebones Heroku app

This commit is contained in:
Eryn Wells 2017-09-30 08:11:17 -07:00
commit ca76c99b3d
5 changed files with 95 additions and 0 deletions

7
tictactoe.py Normal file
View file

@ -0,0 +1,7 @@
from flask import Flask
app = Flask(__name__)
@app.route('/')
def hello():
return 'Hello!'