mirror of
https://github.com/hexedtech/codemp.git
synced 2024-11-22 07:14:50 +01:00
list of proto files to build
This commit is contained in:
parent
2f1bfab130
commit
3f49730e7e
1 changed files with 5 additions and 2 deletions
7
build.rs
7
build.rs
|
@ -1,5 +1,8 @@
|
||||||
fn main() -> Result<(), Box<dyn std::error::Error>> {
|
fn main() -> Result<(), Box<dyn std::error::Error>> {
|
||||||
tonic_build::compile_protos("proto/buffer.proto")?;
|
tonic_build::compile_protos("proto/model/cursor.proto")?;
|
||||||
tonic_build::compile_protos("proto/cursor.proto")?;
|
tonic_build::compile_protos("proto/model/user.proto")?;
|
||||||
|
tonic_build::compile_protos("proto/buffer_service.proto")?;
|
||||||
|
tonic_build::compile_protos("proto/cursor_service.proto")?;
|
||||||
|
tonic_build::compile_protos("proto/workspace_service.proto")?;
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue