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(()) }