Skip to main content

uniffi_bindgen_js/
lib.rs

1pub mod cli;
2pub mod js;
3
4use anyhow::Result;
5
6pub fn run(cli: cli::Cli) -> Result<()> {
7    match cli.command {
8        cli::Command::Generate(args) => js::generate_bindings(&args),
9    }
10}