locode-exec 0.1.5

Minimal headless runner for the locode agent engine - one JSON report on stdout
Documentation
1
2
3
4
5
6
7
8
9
//! The stock locode-exec binary: the library CLI with the built-in providers.
//! Downstream binaries with custom providers look identical plus `.register`
//! calls (ADR-0015) — see the crate docs.

use std::process::ExitCode;

fn main() -> ExitCode {
    locode_exec::main_with(locode_exec::ProviderRegistry::builtin())
}