py requirements.txt
This commit is contained in:
BIN
Backend/requirements.txt
Normal file
BIN
Backend/requirements.txt
Normal file
Binary file not shown.
0
Backend/src/db.py
Normal file
0
Backend/src/db.py
Normal 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)
|
||||
Reference in New Issue
Block a user