1//! Resolution protocols for encounter resolution. 2 3pub mod background; 4pub mod multi_beat; 5pub mod single; 6 7pub use background::{BackgroundScheme, SchemePhase}; 8pub use multi_beat::MultiBeat; 9pub use single::SingleExchange;