(db_path: str)
| 31 | |
| 32 | |
| 33 | def configure_db_path(db_path: str) -> Path: |
| 34 | resolved = resolve_project_path(db_path) |
| 35 | db_ops.DB_PATH = resolved |
| 36 | return resolved |
| 37 | |
| 38 | |
| 39 | def load_roles(roles_path: str) -> Dict[str, Dict[str, Any]]: |
no test coverage detected