Add pending request cleanup and config

This commit is contained in:
2025-05-29 14:53:48 +02:00
parent 493ba53c08
commit 89130c2067
15 changed files with 242 additions and 19 deletions

View File

@@ -18,7 +18,12 @@ async fn main() -> Result<()> {
.init();
// Create the base transport
let transport = SseTransport::new("http://localhost:8000/sse", HashMap::new());
let transport = SseTransport::new(
"http://localhost:8000/sse",
HashMap::new(),
None,
None,
);
// Start transport
let handle = transport.start().await?;