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"}