Coverage for fastblocks / adapters / admin / _base.py: 100%
5 statements
« prev ^ index » next coverage.py v7.12.0, created at 2025-11-26 03:58 -0800
« prev ^ index » next coverage.py v7.12.0, created at 2025-11-26 03:58 -0800
1from acb.config import AdapterBase, Settings
4class AdminBaseSettings(Settings):
5 style: str = "bootstrap"
6 title: str = "FastBlocks Dashboard"
9class AdminBase(AdapterBase): ...