umls 0.1.1

A library and command line tool for working with the UMLS Metathesaurus
Documentation
1
2
3
4
5
6
7
8
9
10
use clap::Parser;
use eyre::Result;

mod cmd;

fn main() -> Result<()> {
    let args = cmd::Args::parse();

    cmd::run(args)
}