From 7ed1f065a035be7f66d9c7d2fcc91cca2596599b Mon Sep 17 00:00:00 2001 From: Miranda Zheng <123515762+mirmirmirr@users.noreply.github.com> Date: Fri, 1 Nov 2024 16:29:32 -0400 Subject: [PATCH] black check --- backend/app.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/backend/app.py b/backend/app.py index 5b0b0116..ef8c25f1 100644 --- a/backend/app.py +++ b/backend/app.py @@ -1,5 +1,3 @@ - - from fastapi import FastAPI app = FastAPI() @@ -10,7 +8,7 @@ # # user event availability object # # store as a list of objects for availabilites ([Monday 11/5, Tuesday 11/6, ...]) - + # class SpecificDates(Event): # def __init__(self, generic_week, something): # super().__init__(generic_week) @@ -27,19 +25,21 @@ # Date Range, Time Range, Generic Event (?) - @app.get("/") async def root(): return {"message": "Hello World"} + @app.get("/create_event") async def create_event(): return {"message": "you sent calendar data"} + @app.get("/login") async def login(): return {"message": "you sent login data"} + @app.get("/cookies") async def root(): return {"message": "you sent cookie data"}