Barebones Heroku app
This commit is contained in:
commit
ca76c99b3d
5 changed files with 95 additions and 0 deletions
7
tictactoe.py
Normal file
7
tictactoe.py
Normal file
|
@ -0,0 +1,7 @@
|
|||
from flask import Flask
|
||||
|
||||
app = Flask(__name__)
|
||||
|
||||
@app.route('/')
|
||||
def hello():
|
||||
return 'Hello!'
|
Loading…
Add table
Add a link
Reference in a new issue