existence 0.4.0

CLI for the Existence ontology framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub mod config;
pub mod markdown;

/// Command implementations exposed as library functions.
///
/// Note: `completions` is excluded from the library as it depends on
/// the CLI `Cli` struct defined in main.rs.
pub mod commands {
    pub mod fetch;
    pub mod graph;
    pub mod lint;
    pub mod lookup;
    pub mod new;
    pub mod scope;
    pub mod search;
}