Set up nix-shell + fastapi base

This commit is contained in:
2026-04-12 21:55:13 +02:00
parent 12914f8169
commit 363f642bff
3 changed files with 25 additions and 0 deletions

7
main.py Normal file
View File

@@ -0,0 +1,7 @@
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
async def root():
return {"message": "Hello World"}