minimal app

This commit is contained in:
Matthieu BOUCLY 2025-03-31 11:18:27 +02:00
commit 3d0cb9cc28
30 changed files with 3506 additions and 0 deletions

15
backend/app.py Normal file
View file

@ -0,0 +1,15 @@
from flask import *
from flask_restx import *
app = Flask(__name__)
api = Api(app)
@api.route('/')
class Index(Resource):
def get(self):
data = {'message': 'Hello World!'}
return data, 200
if __name__ == '__main__':
app.run(debug=True)