We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d2cbb05 commit ba24241Copy full SHA for ba24241
src/a2a/server/apps/__init__.py
@@ -1 +1,15 @@
1
"""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
@@ -18,7 +18,7 @@
18
from starlette.routing import Route
19
from starlette.testclient import TestClient
20
21
-from a2a.server.apps.jsonrpc import (
+from a2a.server.apps import (
22
A2AStarletteApplication,
23
A2AFastAPIApplication,
24
)
0 commit comments