/* * SPDX-FileCopyrightText: 2024 Eilertsens Kodeknekkeri * SPDX-FileCopyrightText: 2024 Harald Eilertsen * * SPDX-License-Identifier: AGPL-3.0-or-later */ use std::error::Error; use zotapi::ZotApi; pub struct VerifyCmd { } impl VerifyCmd { pub async fn run(&self, client: ZotApi) -> Result<(), Box> { let channel = client.verify().await; println!("{:?}", channel); Ok(()) } }