theater-server 0.3.10

HTTP server for Theater actor system management
Documentation

theater-server

HTTP server component for the Theater WebAssembly actor system.

Overview

theater-server provides the HTTP API server for managing Theater actors. It handles:

  • Actor lifecycle management via REST API
  • WebSocket connections for real-time event streaming
  • Server administration and monitoring

Usage

use theater_server::{ServerConfig, start_server};

#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
    let config = ServerConfig::default();
    start_server(config).await?;
    Ok(())
}

License

This project is licensed under the Apache License 2.0 - see the LICENSE file for details.