Skip to main content

manabrew_protocol/
lib.rs

1//! Engine-free DTOs shared by the game clients: decks, the game-domain types,
2//! prompts, display events and the agent transport envelopes. The relay wire
3//! protocol lives in `manabrew-relay-protocol`, which depends on this crate.
4pub mod deck_dto;
5pub mod display;
6pub mod game;
7pub mod prompts;
8pub mod token;
9pub mod transport;
10
11pub use token::TokenScript;