fast-down-cli 2.7.8

超级快的下载器命令行界面
1
2
3
4
5
6
7
8
9
use crate::args::ListArgs;
use crate::store::Store;
use color_eyre::Result;

pub async fn list(args: ListArgs) -> Result<()> {
    let store = Store::new().await?;
    println!("{}", store.display(args.details)?);
    Ok(())
}