初次提交代码

1. 完成基本的rpc的调用回调
2. 支持了config的解析
3. 支持了file handle的管理
This commit is contained in:
2024-07-02 18:37:53 +08:00
parent 5e1e42504c
commit 6b9433f756
9 changed files with 2030 additions and 1 deletions

4
build.rs Normal file
View File

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