FastAPI - Database Integration
What will happen if you save data only in a FastAPI variable without a database?
items = []
@app.post('/add')
async def add(item: str):
items.append(item)
return items