Coverage for docs_src / settings / app01_py310 / main.py: 100%

6 statements  

« prev     ^ index     » next       coverage.py v7.13.3, created at 2026-04-06 01:24 +0000

1from fastapi import FastAPI 1abicdjefkghl

2 

3from .config import settings 1abicdjefkghl

4 

5app = FastAPI() 1abcdefgh

6 

7 

8@app.get("/info") 1abcdefgh

9async def info(): 1abcdefgh

10 return { 1mnop

11 "app_name": settings.app_name, 

12 "admin_email": settings.admin_email, 

13 "items_per_user": settings.items_per_user, 

14 }