gthings 0.6.4

CLI binary for gthings — browser-automated web research toolkit
//! CLI subcommand handlers.

mod batch;
mod connect;
mod extract;
mod follow;
mod harvest;
mod search;
mod status;
mod update;

pub(crate) use batch::*;
pub(crate) use connect::*;
pub(crate) use extract::*;
pub(crate) use follow::*;
pub(crate) use harvest::*;
pub(crate) use search::*;
pub(crate) use status::*;
pub(crate) use update::*;