Skip to content

Commit 35ffba3

Browse files
initial commit
1 parent 9d80bad commit 35ffba3

3 files changed

Lines changed: 11 additions & 0 deletions

File tree

app.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
from flask import Flask, render_template
2+
3+
app = Flask(__name__)
4+
5+
@app.route("/")
6+
def home () :
7+
return render_template("index.html")
8+
9+
if __name__ == "__main__":
10+
app.run(debug=True)

requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
flask
File renamed without changes.

0 commit comments

Comments
 (0)