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