aic-server / build.rs
variphx's picture
add/fix: add search functionalities and refactor some modules
6b23458
raw
history blame contribute delete
177 Bytes
fn main() -> anyhow::Result<()> {
println!("cargo::rerun-if-changed=proto/text_embed.proto");
tonic_prost_build::compile_protos("proto/text_embed.proto")?;
Ok(())
}