refactor: put every filesystem write behind one module

This commit is contained in:
2026-09-08 12:04:51 +00:00
parent bbbca755be
commit a3c08f6eaa
10 changed files with 261 additions and 236 deletions

View File

@@ -1,9 +1,11 @@
// build.rs reaches these definitions with include!, so nothing here may refer to
// the rest of the crate: keep this tree to clap definitions only
mod ahab;
mod django;
mod link;
mod postgres;
pub use ahab::{Ahab, Commands, reject_unsupported_dry_run};
pub use ahab::{Ahab, Commands};
pub use django::Django;
pub use link::Link;
pub use postgres::{Format, Postgres};