cli/
lib.rs

1use serde::{Deserialize, Serialize};
2pub type Error = Box<dyn std::error::Error + Send + Sync + 'static>;
3
4mod actions;
5pub use actions::*;
6mod utils;
7pub use utils::*;
8mod config;
9pub use config::*;