Coverage for src/lexigram/web/quickstart/__init__.py: 100%
3 statements
« prev ^ index » next coverage.py v7.15.4, created at 2026-08-25 04:37 +0800
« prev ^ index » next coverage.py v7.15.4, created at 2026-08-25 04:37 +0800
1"""Quick-start module for single-file Lexigram web applications."""
3from __future__ import annotations
5from lexigram.web.quickstart.core import (
6 _QUICKSTART_REGISTRY,
7 _QUICKSTART_ROUTE_REGISTRY,
8 _PendingRoute,
9 _QuickstartApp,
10 _reset_quickstart_registry,
11 app,
12 injectable,
13 singleton,
14)
16__all__ = [
17 "_QUICKSTART_REGISTRY",
18 "_QUICKSTART_ROUTE_REGISTRY",
19 "_PendingRoute",
20 "_QuickstartApp",
21 "_reset_quickstart_registry",
22 "app",
23 "injectable",
24 "singleton",
25]