fallow-cli 3.5.0

CLI for fallow, codebase intelligence for TypeScript and JavaScript
Documentation
1
2
3
4
5
6
7
8
use std::process::ExitCode;

/// Thin delegator to the CLI library entry. The full clap tree and command
/// dispatch live in `fallow_cli::run` so the multicall `fallow-multicall`
/// binary can reuse the exact same command surface.
fn main() -> ExitCode {
    fallow_cli::run()
}