theater-client 0.3.10

Client library for Theater actor system
Documentation
1
2
3
4
5
6
7
8
9
//! # Theater Client
//!
//! This module provides utilities for connecting to and interacting with a Theater server.
//! It offers a simple, flexible interface for sending commands and receiving responses.

mod tcp;

pub use tcp::TheaterConnection;
pub use theater_server::{ManagementCommand, ManagementError, ManagementResponse, TheaterServer};