Coverage for agentos/comm/__init__.py: 100%
2 statements
« prev ^ index » next coverage.py v7.14.3, created at 2026-07-02 09:59 +0800
« prev ^ index » next coverage.py v7.14.3, created at 2026-07-02 09:59 +0800
1"""Communication module - Communication layer"""
3from agentos.comm.layer import (
4 CommunicationLayer,
5 Blackboard,
6 EventBus,
7 Mailbox,
8)
10__all__ = [
11 "CommunicationLayer",
12 "Blackboard",
13 "EventBus",
14 "Mailbox",
15]