src/api2/node.rs: 'mod' statement cleanup

split them into groups: `pub`, `pub(crate)` and non-pub

Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
This commit is contained in:
Wolfgang Bumiller 2020-07-29 09:19:56 +02:00
parent f6c6e09a8a
commit 3865e27e96
1 changed files with 5 additions and 3 deletions

View File

@ -28,15 +28,17 @@ use crate::tools;
pub mod disks;
pub mod dns;
mod journal;
pub mod network;
pub mod tasks;
pub(crate) mod rrd;
mod apt;
mod journal;
mod services;
mod status;
mod subscription;
mod apt;
mod syslog;
pub mod tasks;
mod time;
pub const SHELL_CMD_SCHEMA: Schema = StringSchema::new("The command to run.")