1pub use packager::*;
2
3pub use crate::structs as other_structs;
4
5mod cli;
6pub mod structs;
7
8#[cfg(test)]
9mod tests {
10 use assert_cmd::cmd::Command;
11
12 #[test]
13 fn help_test() -> anyhow::Result<(), anyhow::Error> {
14 Command::new("pm").arg("-h");
15 Ok(())
16 }
17}