1#[allow(clippy::module_inception)] 2mod actor; 3mod serve; 4#[cfg(test)] 5mod tests; 6 7pub use actor::Actor; 8pub use serve::run;