appmgr: add support for actions

This commit is contained in:
Aiden McClelland
2021-02-17 15:41:52 -07:00
committed by Aiden McClelland
parent 7c321bbf6b
commit 53720130b3
6 changed files with 185 additions and 0 deletions

View File

@@ -20,6 +20,7 @@ lazy_static::lazy_static! {
pub static ref QUIET: tokio::sync::RwLock<bool> = tokio::sync::RwLock::new(!std::env::var("APPMGR_QUIET").map(|a| a == "0").unwrap_or(true));
}
pub mod actions;
pub mod apps;
pub mod backup;
pub mod config;