helios-fhirpath 0.2.0

This is an implementation of HL7's FHIRPath Specification.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! FHIRPath CLI executable
//!
//! This binary provides command-line access to FHIRPath expression evaluation.
//! It allows users to evaluate FHIRPath expressions against FHIR resources,
//! with support for variables, context expressions, and debugging features.
//!
//! See the cli module documentation for detailed usage information.

use clap::Parser;
use helios_fhirpath::cli::{Args, run_cli};

fn main() -> Result<(), Box<dyn std::error::Error>> {
    let args = Args::parse();
    run_cli(args)?;
    Ok(())
}