djogi-cli 0.1.0-alpha.10

CLI for the Djogi framework — migrations, shell, db reset, status
Documentation
1
2
3
4
5
6
7
//! Djogi CLI binary — thin shim over [`djogi_cli::run_from_env`].
//! All CLI logic lives in the `djogi_cli` library crate. The binary
//! target exists solely so Cargo can build the `djogi` executable.

fn main() -> std::process::ExitCode {
    djogi_cli::run_from_env()
}