diff --git a/src/app.rs b/src/app.rs index 963d3e7..2998ba8 100644 --- a/src/app.rs +++ b/src/app.rs @@ -23,7 +23,7 @@ use crate::helpers::{BoilerplateOpts, HELP_TEMPLATE}; // use crate::validators::path_readable_file; use crate::clouds::{on_cloud}; use crate::defs::{BxDynResult}; -use clds::clouds::on_clouds::clear_specs; +use clds::clouds::utils::clear_specs; use tkdr::crypt_lib::{encrypt, decrypt}; use tkdr::tera_lib::{hash_from_data, data_templated, hash_content}; @@ -64,7 +64,7 @@ pub const KEY_PATH: &str = ".k"; /// the top-level help output's list of subcommands. #[derive(StructOpt, Debug)] #[structopt(template = HELP_TEMPLATE, - about = "Coder is a command utility to manage keys (generation,encrypt,hash) and make content with Tera templates", + about = "CloudMandala Declarative command line interface, to create and maintain open, free and sustainable Clouds", global_setting = structopt::clap::AppSettings::ColoredHelp)] pub struct CliOpts { #[allow(clippy::missing_docs_in_private_items)] // StructOpt compile-time errors if we doc this diff --git a/src/clouds.rs b/src/clouds.rs index d965e55..0f979be 100644 --- a/src/clouds.rs +++ b/src/clouds.rs @@ -23,7 +23,7 @@ use clds::clouds::defs::{ TskSrvc, MainResourcesConfig, }; -use clds::clouds::on_clouds::env_cloud; +use clds::clouds::utils::env_cloud; use clds::tsksrvcs::run_tsksrvcs_on_providers; use crate::defs::{load_key}; diff --git a/src/helpers.rs b/src/helpers.rs index d67ee0f..28dd510 100644 --- a/src/helpers.rs +++ b/src/helpers.rs @@ -14,16 +14,18 @@ pub const HELP_TEMPLATE: &str = "{bin} {version} {about} -TskSrvcs: -- Create a Random Key -- Hash content Blake3 -- Encrypt/Decrypt XChaCha20Poly1305 and random nonce -- Tera template with json-data +A Mandala is a geometric configuration of symbols. +In various spiritual traditions, mandalas may be employed +for focusing attention of practitioners and adepts, as a spiritual guidance tool, +for establishing a sacred space and as an aid to meditation and trance induction. + +Clouds sometime look like some kind of sacred or mystical spaces. + +More info: cloudmandala.librecloud.online USAGE: {usage} - {all-args} ";