eli-cli 0.2.3

Internal CLI library for the `market-search` binary. Use `cargo install market-search`.
Documentation
1
2
3
4
5
6
7
8
9
10
11
// Stub: `eli finance movers` — largest day movers screener.
// Real implementation pending. Consumes the FinanceMoversArgs declared in
// args.rs and the dispatch arm in dispatch.rs so the workspace compiles.

async fn cmd_finance_movers(_args: FinanceMoversArgs) -> Result<()> {
    anyhow::bail!(
        "`finance movers` is not yet implemented in this build. \
         Use `finance search` + `finance snapshot` for now, or \
         see github.com/efoltyn/market-search for the latest."
    )
}