(response: Response, participant=Cookie(default=None, alias=COOKIE_NAME))
| 238 | |
| 239 | @app.get("/api/me") |
| 240 | def me(response: Response, participant=Cookie(default=None, alias=COOKIE_NAME)) -> dict: |
| 241 | return {"participant": get_or_create_participant(response, participant)} |
| 242 | |
| 243 | |
| 244 | @app.post("/api/me") |
nothing calls this directly
no test coverage detected