fix: add __init__.py to bare packages across the codebase

- Add __init__.py to agent-coordinator ai, consensus, coordination, decision, lifecycle
- Add __init__.py to wallet crypto package
- Add __init__.py to coordinator-api middleware, repositories, sdk
- Addresses report item #9 (missing package initialization files)
This commit is contained in:
aitbc
2026-04-30 08:38:40 +02:00
parent 5f03ded7ff
commit 8254182eeb
9 changed files with 9 additions and 0 deletions

View File

@@ -0,0 +1 @@
"""AI-related components for agent coordination."""

View File

@@ -0,0 +1 @@
"""Consensus mechanisms for agent coordination."""

View File

@@ -0,0 +1 @@
"""Coordination components for agent orchestration."""

View File

@@ -0,0 +1 @@
"""Decision-making components for agents."""

View File

@@ -0,0 +1 @@
"""Lifecycle management for agent services."""

View File

@@ -0,0 +1 @@
"""Middleware components for the coordinator API."""

View File

@@ -0,0 +1 @@
"""Repository layer for data access."""

View File

@@ -0,0 +1 @@
"""SDK for enterprise client integration."""

View File

@@ -0,0 +1 @@
"""Cryptographic utilities for wallet operations."""