Skip to content

Commit 738dc7c

Browse files
committed
add : mafia.py added.
1 parent 70ec1ac commit 738dc7c

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

mafia.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 index():
7+
return "Hello World!"
8+
9+
if __name__ == "__main__":
10+
app.run()

0 commit comments

Comments
 (0)