bin_efo/
commands.rs

1//! # `commands` module
2//!
3//! This module is the entry point for all CLI sub-commands of the `efo` binary.
4//! Each sub-command (e.g. `epoch`, `org`, `event`, `town`, `link`) lives in its
5//! own file inside this directory and is re-exported here so that the main
6//! `efo::main.rs` can simply `use commands::*;` and dispatch based on the
7//! clap-parsed enum.
8
9#![warn(missing_docs, clippy::missing_docs_in_private_items)]
10
11pub mod entity_generic;
12pub mod epoch;
13pub mod generate;
14pub mod init;
15pub mod show;
16// pub mod diff;
17// pub mod utils;
18// pub mod event;
19// pub mod town;