Skip to main content

theater_cli/commands/
setup.rs

1//! `theater setup` — set up an actor but do NOT call `actor.init`.
2//!
3//! See [`crate::commands::spawn`] for the shared implementation. `setup`
4//! exists as a sibling subcommand for symmetry with `spawn`: both work
5//! against the same manifest, but `spawn` is "ready to receive work" and
6//! `setup` is "the task loops are up; you drive init yourself".
7
8pub use crate::commands::spawn::{execute_setup as execute_async, SetupArgs};