Coverage for fastblocks/adapters/admin/_base.py: 0%
5 statements
« prev ^ index » next coverage.py v7.10.6, created at 2025-09-21 04:50 -0700
« prev ^ index » next coverage.py v7.10.6, created at 2025-09-21 04:50 -0700
1from acb.config import AdapterBase, Settings
4class AdminBaseSettings(Settings):
5 style: str = "bootstrap"
6 title: str = "FastBlocks Dashboard"
9class AdminBase(AdapterBase): ...