"""Nested one level: svc/app.py — autodetect expects svc.app:app."""
from fastapi import FastAPI

app = FastAPI()


@app.get("/")
def root():
    return {"module": "svc.app", "object": "app", "marker": "NESTED_1_LEVEL"}
