We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3bf4d7a commit 243e4a0Copy full SHA for 243e4a0
app.py
@@ -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