paperless_cli/lib.rs
1pub mod api;
2pub mod config;
3pub mod demo;
4pub mod error;
5pub mod pdf;
6pub mod render;
7pub mod security;
8pub mod services;
9pub mod tui;
10
11pub use config::{AppConfig, AppPaths, OutputMode, SessionState};
12pub use error::AppError;
13pub use pdf::{read_local_pdf_info, read_local_pdf_text, PdfError, PdfInfo, PdfMetadata};