gflow 0.4.13

A lightweight, single-node job scheduler written in Rust.
Documentation
use anyhow::Result;
use gflow::client::Client;

pub mod list;
use list::ListOptions;

pub async fn handle_commands(config: &gflow::Config, args: &super::cli::ListArgs) -> Result<()> {
    let client = Client::build(config)?;

    let options = ListOptions {
        user: args.user.clone(),
        states: args.states.clone(),
        jobs: args.jobs.clone(),
        names: args.names.clone(),
        project: args.project.clone(),
        sort: args.sort.clone(),
        limit: args.limit,
        all: args.all,
        completed: args.completed,
        since: args.since.clone(),
        group: args.group,
        tree: args.tree,
        format: args.format.clone(),
        tmux: args.tmux,
        output: args.output.clone(),
        watch: args.watch,
        interval: args.interval,
    };

    list::handle_list(&client, options).await?;

    Ok(())
}