mirror of
https://github.com/tcsenpai/pensieve.git
synced 2025-06-06 03:05:25 +00:00
8 lines
152 B
Python
8 lines
152 B
Python
from fastapi import FastAPI
|
|
|
|
app = FastAPI()
|
|
|
|
@app.get("/libraries")
|
|
async def get_libraries():
|
|
return [{"name": "Library1"}, {"name": "Library2"}]
|