Coverage for src/lexigram/web/background/__init__.py: 100%

4 statements  

« prev     ^ index     » next       coverage.py v7.15.4, created at 2026-08-25 04:37 +0800

1"""Background tasks for fire-and-forget operations.""" 

2 

3from __future__ import annotations 

4 

5from lexigram.web.background.decorator import background 

6from lexigram.web.background.tasks import ( 

7 BackgroundTasks, 

8 BackgroundTaskScope, 

9 StarletteBackgroundTaskRunner, 

10) 

11 

12__all__ = [ 

13 "BackgroundTaskScope", 

14 "BackgroundTasks", 

15 "StarletteBackgroundTaskRunner", 

16 "background", 

17]