gooseberry 0.10.0

A command line utility to generate a knowledge base from Hypothesis annotations
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use clap::Parser;

use gooseberry::gooseberry::cli::GooseberryCLI;
use gooseberry::gooseberry::Gooseberry;

#[tokio::main]
async fn main() -> color_eyre::Result<()> {
    color_eyre::config::HookBuilder::blank()
        .display_env_section(false)
        .install()?;
    let cli = GooseberryCLI::parse();
    Gooseberry::start(cli).await?;
    Ok(())
}