Compare commits
5 Commits
vue
...
ecf237173c
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
ecf237173c | ||
|
|
746c34879e | ||
|
|
f599424ae9 | ||
|
|
f3a05d4bb4 | ||
|
|
eb43b636c0 |
12
app/main.py
Normal file
12
app/main.py
Normal file
@@ -0,0 +1,12 @@
|
||||
from flask import Flask
|
||||
|
||||
|
||||
app = Flask(__name__)
|
||||
|
||||
|
||||
@app.route("/")
|
||||
def hello_world():
|
||||
return "<p>Hello, World!</p>"
|
||||
|
||||
if __name__ == "__main__":
|
||||
app.run()
|
||||
2
requirements.txt
Normal file
2
requirements.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
Flask==3.1.2
|
||||
Werkzeug==3.1.3
|
||||
Reference in New Issue
Block a user