wls_vfs/build.rs
Begild 6b9433f756 初次提交代码
1. 完成基本的rpc的调用回调
2. 支持了config的解析
3. 支持了file handle的管理
2024-07-02 18:46:38 +08:00

4 lines
122 B
Rust

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