rivetkit-client 2.3.1

Rust client for RivetKit - the Stateful Serverless Framework for building AI agents, realtime apps, and game servers
Documentation
1
2
3
4
5
6
7
8
9
10
11
use anyhow::Result;

use super::{DriverConnectArgs, DriverConnection};

pub(crate) async fn connect(_args: DriverConnectArgs) -> Result<DriverConnection> {
	// SSE transport is not currently supported with the new gateway architecture
	// TODO: Implement SSE support via gateway
	Err(anyhow::anyhow!(
		"SSE transport not yet supported with gateway architecture"
	))
}