aboutsummaryrefslogtreecommitdiff
path: root/apps/cassiopeia/src/meta.rs
diff options
context:
space:
mode:
authorMx Kookie <kookie@spacekookie.de>2020-12-12 11:24:43 +0000
committerMx Kookie <kookie@spacekookie.de>2020-12-21 05:19:49 +0100
commit4c97f3208a0ba185264a169e01d0b0d922266ea6 (patch)
treefe35d9da3e60f1169eb97242b1948ccb5f9341cd /apps/cassiopeia/src/meta.rs
parentd346c9f2f30041623e51b120e767b1ce02083e97 (diff)
cassiopeia: adding API outline
Diffstat (limited to '')
-rw-r--r--apps/cassiopeia/src/meta.rs8
1 files changed, 7 insertions, 1 deletions
diff --git a/apps/cassiopeia/src/meta.rs b/apps/cassiopeia/src/meta.rs
index 835444f9bdc5..6d74d95bfe2a 100644
--- a/apps/cassiopeia/src/meta.rs
+++ b/apps/cassiopeia/src/meta.rs
@@ -19,7 +19,9 @@ pub const ARG_ROUNDING: &'static str = "CASS_ROUNDING";
pub const ARG_ROUNDING_ABOUT: &'static str = "Disable the (default) 15 minute rounding period";
pub const CMD_INVOICE: &'static str = "invoice";
-pub const CMD_INVOICE_ABOUT: &'static str = "Create an invoice";
+pub const CMD_INVOICE_ABOUT: &'static str = "Create an invoice. You get to choose between simply adding a \
+statement to your time file, or generating .yml configuration to build an invoice generator from. See invoice(1) \
+for more detail!";
pub const ARG_CLIENT: &'static str = "CLIENT";
pub const ARG_CLIENT_ABOUT: &'static str =
@@ -32,3 +34,7 @@ pub const ARG_PROJECT_ABOUT: &'static str =
pub const ARG_GEN_YAML: &'static str = "GEN_YAML";
pub const ARG_GEN_YAML_ABOUT: &'static str =
"Specify whether to generate a .yml invoice configuration";
+
+pub const ARG_CLIENT_DB: &'static str = "CLIENT_DB";
+pub const ARG_CLIENT_DB_ABOUT: &'static str =
+ "Provide your client database file (.yml format) used by invoice(1)";