Coverage for src / ezqt_app / domain / results / __init__.py: 100.00%
6 statements
« prev ^ index » next coverage.py v7.13.5, created at 2026-04-06 13:12 +0000
« prev ^ index » next coverage.py v7.13.5, created at 2026-04-06 13:12 +0000
1# ///////////////////////////////////////////////////////////////
2# DOMAIN.RESULTS - Domain result objects aggregator
3# Project: ezqt_app
4# ///////////////////////////////////////////////////////////////
6"""Domain result objects used for typed orchestration contracts."""
8from __future__ import annotations
10# ///////////////////////////////////////////////////////////////
11# PUBLIC API
12# ///////////////////////////////////////////////////////////////
13from .base_result import BaseResult
14from .init_result import InitResult
15from .init_step_result import InitStepResult
16from .result_error import ResultError
18# ///////////////////////////////////////////////////////////////
19# PUBLIC API
20# ///////////////////////////////////////////////////////////////
21__all__ = [
22 "BaseResult",
23 "InitResult",
24 "InitStepResult",
25 "ResultError",
26]