this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 9 lines 283 B view raw
1fn main() -> Result<(), Box<dyn std::error::Error>> { 2 tonic_build::configure() 3 .build_server(true) 4 .build_client(true) 5 .protoc_arg("--experimental_allow_proto3_optional") 6 .compile_protos(&["proto/gigabrain.proto"], &["proto/"])?; 7 8 Ok(()) 9}