rmpca 0.2.0

Enterprise-grade unified CLI for rmp.ca operations - Rust port
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Command module containing all CLI subcommands
//!
//! Each command is implemented in its own module file for
//! better organization and maintainability.

pub mod clean;
pub mod compile_map;
pub mod convert_osm;
pub mod extract_osm;
pub mod extract_overture;
pub mod logs;
pub mod optimize;
pub mod pipeline;
pub mod status;
pub mod validate;