Skip to content

Commit 212f3fb

Browse files
committed
first commit
1 parent 884373c commit 212f3fb

2 files changed

Lines changed: 8 additions & 0 deletions

File tree

__pycache__/app.cpython-312.pyc

385 Bytes
Binary file not shown.

run.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
from flask import Flask
2+
3+
app = Flask(__name__)
4+
5+
6+
@app.route('/')
7+
def hello():
8+
return 'Hello, World!'

0 commit comments

Comments
 (0)