aboutsummaryrefslogtreecommitdiffstats
path: root/src/bin/zot/command/channel/export.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/bin/zot/command/channel/export.rs')
-rw-r--r--src/bin/zot/command/channel/export.rs19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/bin/zot/command/channel/export.rs b/src/bin/zot/command/channel/export.rs
new file mode 100644
index 0000000..ad006de
--- /dev/null
+++ b/src/bin/zot/command/channel/export.rs
@@ -0,0 +1,19 @@
+/*
+ * SPDX-FileCopyrightText: 2024 Eilertsens Kodeknekkeri
+ * SPDX-FileCopyrightText: 2024 Harald Eilertsen
+ *
+ * SPDX-License-Identifier: AGPL-3.0-or-later
+ */
+
+use zotapi::ZotApi;
+use std::error::Error;
+
+pub struct ChannelExportCmd {
+}
+
+impl ChannelExportCmd {
+ pub async fn run(&self, client: ZotApi) -> Result<(), Box<dyn Error + 'static>> {
+ println!("{}", client.channel_export().await?);
+ Ok(())
+ }
+}