py requirements.txt

This commit is contained in:
2024-09-14 09:34:14 -04:00
parent 89c5e81623
commit 57e03eb4b8
3 changed files with 2 additions and 2 deletions

BIN
Backend/requirements.txt Normal file

Binary file not shown.

0
Backend/src/db.py Normal file
View File

View File

@@ -2,8 +2,8 @@ from flask import Flask
app = Flask(__name__)
@app.route('/')
def hello():
@app.route('/', methods=['GET'])
def hello_world():
return 'Hello, World!'
app.run(port=5000)