cartulary 0.3.0-alpha.1

The knowledge layer of your project — decisions, issues, docs, all in one place.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Use cases over the query store. The CLI talks to these
//! functions only; the store and runner ports stay opaque on the
//! calling side.

pub mod execute;
pub mod list;
pub mod runner;
pub mod schema;
pub mod store;

pub use execute::execute_query;
pub use list::list_queries;
pub use runner::QueryRunner;
pub use schema::query_schema;
pub use store::QueryStore;