Coverage for src/alprina_cli/api/schemas/__init__.py: 100%
3 statements
« prev ^ index » next coverage.py v7.11.3, created at 2025-11-14 11:27 +0100
« prev ^ index » next coverage.py v7.11.3, created at 2025-11-14 11:27 +0100
1"""
2Pydantic schemas for API request/response validation.
3"""
5from .scan import CodeScanRequest, ScanResponse, Finding
6from .agent import AgentInfo, AgentListResponse
8__all__ = [
9 "CodeScanRequest",
10 "ScanResponse",
11 "Finding",
12 "AgentInfo",
13 "AgentListResponse",
14]