From 07e9ba35437aeadbaded2b8c929295f8b29dab8a Mon Sep 17 00:00:00 2001 From: Ashhhleyyy Date: Sun, 18 Feb 2024 18:03:48 +0000 Subject: [PATCH] feat(backend): important update --- backend/app.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/backend/app.py b/backend/app.py index 4d378b9..4643375 100644 --- a/backend/app.py +++ b/backend/app.py @@ -23,6 +23,11 @@ app.add_middleware( allow_headers="*", ) +def index(): + return { + '🏳️‍⚧️': 'trans rights!', + } + @app.post('/api/codes') def submit_code(date: str, time: str, activity: str, space: str, submission: CodeSubmission, db: sqlite3.Cursor=Depends(get_db)): # TODO: validate parameters meet expected form.