aboutsummaryrefslogtreecommitdiffstats
path: root/crates/client/src/command/contributors.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/client/src/command/contributors.rs')
-rw-r--r--crates/client/src/command/contributors.rs5
1 files changed, 5 insertions, 0 deletions
diff --git a/crates/client/src/command/contributors.rs b/crates/client/src/command/contributors.rs
new file mode 100644
index 00000000..b2a41522
--- /dev/null
+++ b/crates/client/src/command/contributors.rs
@@ -0,0 +1,5 @@
+static CONTRIBUTORS: &str = include_str!("CONTRIBUTORS");
+
+pub(crate) fn run() {
+ println!("\n{CONTRIBUTORS}");
+}