Files
Nicolas Sebastian Schuler 128a3b8809 (feat) initial working state
2025-07-16 08:53:14 +02:00

10 lines
170 B
Python

from fastapi import FastAPI
from base_types import Notification
app = FastAPI()
@app.post("/notification")
async def notification(ntfy: Notification):
print(ntfy)