Spaces:
Runtime error
Runtime error
""" | |
""" | |
from fastapi import FastAPI | |
from fastapi import Request | |
events = [] | |
app = FastAPI() | |
async def get_events(): | |
return events | |
async def webhook(request: Request): | |
global events | |
events += [await request.json()] | |