summaryrefslogtreecommitdiffstats
path: root/src/commands/mod.rs
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2021-03-10 10:32:24 +0100
committerMatthias Beyer <mail@beyermatthias.de>2021-03-10 11:48:45 +0100
commit0ecac14b26d6eea26328aefff1c4e88d25cd643c (patch)
treeba35fcf8ccbdc36384794826dfb7b05918351580 /src/commands/mod.rs
parenta554772d25026a9cf223514d9422c70fc9b15f69 (diff)
parent9a79643ced98567ab7b0c742f0d161cb5dd43578 (diff)
Merge branch 'subcommand-endpoint'
Conflicts: src/cli.rs src/main.rs from merging the "metrics" subcommand implementation branch first. Conflicts were trivial, so I resolved them here in the merge commit. Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
Diffstat (limited to 'src/commands/mod.rs')
-rw-r--r--src/commands/mod.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/commands/mod.rs b/src/commands/mod.rs
index 3f35c63..0e422ed 100644
--- a/src/commands/mod.rs
+++ b/src/commands/mod.rs
@@ -14,6 +14,10 @@ pub use build::build;
mod db;
pub use db::db;
+mod endpoint;
+pub use endpoint::endpoint;
+pub(super) mod endpoint_container;
+
mod env_of;
pub use env_of::env_of;