sirno 0.0.5

Sirno gives project design a semantic intermediate representation.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Shared command surface for Sirno.
//!
//! The `surface` module keeps the public command facade stable while the implementation
//! is organized by interface layer.

mod cli;
mod context;
mod dto;
mod error;
mod output;
mod rg;

pub use crate::surface::cli::{Cli, run_cli_from_env};
pub use crate::surface::context::SurfaceContext;
pub use crate::surface::dto::*;
pub use crate::surface::error::{CommandError, OpenTideTutorial};
pub use crate::surface::output::format_json;