formanator 4.0.0

Submit Forma <https://joinforma.com> benefit claims from the command line, with support for AI-powered receipt analysis via OpenAI or GitHub Models
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! `formanator` library crate. The CLI binary in `src/main.rs` wires this
//! together with [Clap](https://docs.rs/clap/) and the various subcommand
//! handlers in [`commands`].

pub mod claims;
pub mod cli;
pub mod commands;
pub mod config;
pub mod forma;
pub mod keychain;
pub mod llm;
#[cfg(feature = "mcp")]
pub mod mcp;
pub mod prompt;
pub mod update_check;
pub mod verbose;