first commit
This commit is contained in:
commit
18bcafe29b
8 changed files with 143 additions and 0 deletions
10
server.py
Normal file
10
server.py
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
from flask import Flask, render_template
|
||||
|
||||
app = Flask(__name__)
|
||||
|
||||
@app.route("/")
|
||||
def index():
|
||||
return render_template("index.html")
|
||||
|
||||
if __name__ == "__main__":
|
||||
app.run(debug=True)
|
||||
Loading…
Add table
Add a link
Reference in a new issue