(feat) initial working state

This commit is contained in:
Nicolas Sebastian Schuler
2025-07-16 08:53:14 +02:00
parent 50ab98bb78
commit 128a3b8809
6 changed files with 740 additions and 0 deletions

9
main.py Normal file
View File

@@ -0,0 +1,9 @@
from fastapi import FastAPI
from base_types import Notification
app = FastAPI()
@app.post("/notification")
async def notification(ntfy: Notification):
print(ntfy)