semantic-search-cli 0.1.3

🔎 Semantic search cli.
Documentation
//! `serve` subcommand

#![allow(unused_imports, unused_variables, reason = "Not implemented yet.")]

use crate::Config;
use anyhow::{Context, Result};
use argh::FromArgs;

/// start a server to search for files
#[derive(FromArgs, PartialEq, Eq, Debug)]
#[argh(subcommand, name = "serve", help_triggers("-h", "--help"))]
pub struct Serve {
    // ...
}

impl Serve {
    #[allow(clippy::unused_async, reason = "Not implemented yet")]
    pub async fn execute(&self, config: Config) -> Result<()> {
        // ...
        Ok(())
    }
}