lws_client/build.rs
BeGild b60feeb7ed 1. 添加cache life time的支持。默认10s
2. 优化server:port的解析,使其可以单独定义ip端口或者一起定义
3. 使用fmt格式化整个工程
2024-08-07 08:37:14 +08:00

5 lines
120 B
Rust
Executable File

fn main() -> Result<(), Box<dyn std::error::Error>> {
tonic_build::compile_protos("proto/lws.proto")?;
Ok(())
}