gthings 0.6.2

CLI binary for gthings — browser-automated web research toolkit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! CLI subcommand handlers.

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

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::*;