mirror of
https://github.com/qdrant/qdrant.git
synced 2026-09-25 23:47:38 -05:00
9 lines
329 B
Rust
9 lines
329 B
Rust
fn main() -> std::io::Result<()> {
|
|
tonic_build::configure()
|
|
.out_dir("src/grpc/") // saves generated structures at this location
|
|
.compile(
|
|
&["src/grpc/proto/qdrant.proto"], // proto entry point
|
|
&["src/grpc/proto"], // specify the root location to search proto dependencies
|
|
)
|
|
}
|