Skip to main content

quorum_core/
lib.rs

1//! This file is the main entry point for the `quorum-core` library.
2//! The `quorum-core` is includes all code which is shared between both public and private servers.
3//!
4//! For example this includes the health and echo route endpoints since both public and private servers have them exactly the same,
5
6pub mod cli;
7pub mod db;
8pub mod models;
9pub mod routes;
10pub mod startup;
11pub mod utility;