Skip to content

Commit ba24241

Browse files
added exports
1 parent d2cbb05 commit ba24241

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

src/a2a/server/apps/__init__.py

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,15 @@
11
"""HTTP application components for the A2A server."""
2+
3+
from .jsonrpc import (
4+
A2AFastAPIApplication,
5+
A2AStarletteApplication,
6+
CallContextBuilder,
7+
JSONRPCApplication,
8+
)
9+
10+
__all__ = [
11+
'A2AFastAPIApplication',
12+
'A2AStarletteApplication',
13+
'CallContextBuilder',
14+
'JSONRPCApplication',
15+
]

tests/server/test_integration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
from starlette.routing import Route
1919
from starlette.testclient import TestClient
2020

21-
from a2a.server.apps.jsonrpc import (
21+
from a2a.server.apps import (
2222
A2AStarletteApplication,
2323
A2AFastAPIApplication,
2424
)

0 commit comments

Comments
 (0)