ort_grpc/
lib.rs

1#![deny(warnings, rust_2018_idioms)]
2
3#[cfg(feature = "client")]
4pub mod client;
5
6#[cfg(feature = "server")]
7pub mod server;
8
9pub mod proto {
10    tonic::include_proto!("ort.olix0r.net");
11}