Skip to content

Commit fceb19f

Browse files
committed
Setting up the skeleton for the solution of part2
1 parent 251b910 commit fceb19f

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

part2/reverse_flask_reza/views.py

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
from flask import Flask
2+
3+
# Creating instances
4+
app = Flask(__name__)
5+
6+
7+
8+
@app.route('/')
9+
def index():
10+
return "Hello world!"
11+
12+
if __name__=='__main__':
13+
app.run(debug=True)

0 commit comments

Comments
 (0)