Coverage for archdocs/features/sqlalchemy/const.py: 100%
7 statements
« prev ^ index » next coverage.py v7.15.3, created at 2026-08-03 00:00 +0000
« prev ^ index » next coverage.py v7.15.3, created at 2026-08-03 00:00 +0000
1import dataclasses
2import typing
5@typing.final
6@dataclasses.dataclass(slots=True, kw_only=True, frozen=True)
7class SQLAlchemyFeatures:
8 async_used: bool
9 pooling_used: bool
10 multiple_hosts: bool
11 # https://magicstack.github.io/asyncpg/current/api/index.html more info about them
12 target_session_attrs: str = ""
13 database_type: str = ""