semantic-search-cli 0.1.4

🔎 Semantic search cli.
Documentation
//! Subcommands for the Semantic Search CLI.

mod index;
mod search;
mod serve;
mod telegram;

use argh::FromArgs;
pub use index::Index;

/// Possible commands.
#[derive(FromArgs, PartialEq, Eq, Debug)]
#[argh(subcommand)]
pub enum Command {
    /// An index command.
    Index(index::Index),
    /// A search command.
    Search(search::Search),
    /// A Telegram bot command.
    Telegram(telegram::Telegram),
    /// A serve command.
    Serve(serve::Serve),
}