Skip to content
This repository has been archived by the owner on Dec 16, 2024. It is now read-only.

Commit

Permalink
black check
Browse files Browse the repository at this point in the history
  • Loading branch information
mirmirmirr committed Nov 1, 2024
1 parent a97c192 commit 7ed1f06
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions backend/app.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@


from fastapi import FastAPI

app = FastAPI()
Expand All @@ -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)
Expand All @@ -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"}

0 comments on commit 7ed1f06

Please sign in to comment.