blob: acabd08822981829b340f9391e21b789cf030c70 (
plain)
1
2
3
4
5
6
7
8
9
|
extern crate tonic_build;
fn main() -> Result<(), Box<dyn std::error::Error>> {
tonic_build::configure()
.build_server(false)
.build_client(true)
.compile(&["../proto/bot_api.proto"], &["../proto"])?;
Ok(())
}
|