1 2 3 4 5 6 7
pub mod config; pub mod notion; pub use config::Config; pub use notion::{NotionClient, Task, TaskStatus, TaskPriority}; pub type Result<T> = anyhow::Result<T>;