summaryrefslogtreecommitdiffstats
path: root/src/commands/mod.rs
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2021-03-04 19:02:01 +0100
committerMatthias Beyer <mail@beyermatthias.de>2021-03-10 10:14:47 +0100
commit120a5fa17b4736c953c64bc2ffc6858679608f6b (patch)
tree0730772dd4e0062a5c4847d9c858074d9dfd2245 /src/commands/mod.rs
parent60a3fa633a33e315c1439a9f2436fcdb48da62ae (diff)
Add command to get metrics
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
Diffstat (limited to 'src/commands/mod.rs')
-rw-r--r--src/commands/mod.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/commands/mod.rs b/src/commands/mod.rs
index 473596a..3f35c63 100644
--- a/src/commands/mod.rs
+++ b/src/commands/mod.rs
@@ -44,4 +44,7 @@ pub use versions_of::versions_of;
mod tree_of;
pub use tree_of::tree_of;
+mod metrics;
+pub use metrics::metrics;
+
mod util;