entangle-mirror 0.1.2

Easy setup for mirroring GitHub repos to Tangled.org in one command
1
2
3
4
5
6
7
8
9
10
//! Command handler modules — one per subcommand.
//!
//! Each module exposes a single `run(...)` function that `main.rs` calls
//! after argument parsing. The split keeps `main.rs` minimal (just wiring)
//! and each command self-contained.

pub mod init;
pub mod set;
pub mod setup;
pub mod shove;