brane_api/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
//  LIB.rs
//    by Lut99
//
//  Created:
//    17 Oct 2022, 15:15:06
//  Last edited:
//    02 Nov 2022, 16:21:44
//  Auto updated?
//    Yes
//
//  Description:
//!   The `brane-api` service functions as a centralized registry with
//!   metadata for an entire Brane instance.
//

// Declare modules
pub mod data;
pub mod errors;
pub mod health;
pub mod infra;
pub mod packages;
pub mod schema;
pub mod spec;
pub mod version;