Skip to content

Commit 243e4a0

Browse files
committed
App flask de teste
1 parent 3bf4d7a commit 243e4a0

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

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
2+
3+
app = Flask(__name__)
4+
5+
@app.route("/")
6+
def pagina_inicial():
7+
return "DEFINIR"
8+
9+
if __name__ == '__main__':
10+
app.run(debug=True)

0 commit comments

Comments
 (0)