docbox-management 0.12.0

Management core library for managing docbox used by the cli and other tools
1
2
3
4
5
6
7
8
9
10
11
12
13
#![forbid(unsafe_code)]

pub mod config;
pub mod database;
pub mod password;
pub mod root;
pub mod server;
pub mod tenant;

/// docbox-core re-exports
pub mod core {
    pub use docbox_core::*;
}