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-12 11:24:43 +0000
commit56212d7154b5e59f663af64b4b437d6ca44d7a8a (patch)
tree1a02c67101ed0685c564e60cc605e3adddfd4f17 /apps/cassiopeia/src/meta.rs
parent5d47ea9a3507ec8daf5fac4869cc4f43ce0961eb (diff)
cassiopeia: adding API outline
Diffstat (limited to 'apps/cassiopeia/src/meta.rs')
-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)";