]> git.lizzy.rs Git - connect-rs.git/blob - examples/tcp-client/build.rs
rename stitch-net to connect
[connect-rs.git] / examples / tcp-client / build.rs
1 fn main() -> Result<(), Box<dyn std::error::Error>> {
2     protobuf_codegen_pure::Codegen::new()
3         .out_dir("src/schema")
4         .inputs(&["schema/hello_world.proto"])
5         .include("schema")
6         .run()
7         .expect("Codegen failed.");
8     Ok(())
9 }