amg 0.1.0

Resume Codex sessions by git branch
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Binary entry point for the `amg` command-line tool.
//!
//! This is the main entry point when running `amg` as a binary. It delegates to the
//! library's [`cli::entry`] function.

/// Main entry point for the amg binary.
///
/// Delegates to [`amg::cli::entry`] to handle all CLI logic.
fn main() -> std::process::ExitCode {
    amg::cli::entry()
}