// SPDX-License-Identifier: Apache-2.0
//! Contribution history command.
useanyhow::Result;useaptu_core::history;usesuper::types::HistoryResult;/// Show contribution history.
pubfnrun()->Result<HistoryResult>{let data =history::load()?;Ok(HistoryResult {
contributions: data.contributions.clone(),
history_data: data,})}