mirror of
https://github.com/hexedtech/codemp.git
synced 2024-11-22 07:14:50 +01:00
alemidev
4491482b0a
use session for authentication, then workspace to keep in sync and subscribe to new buffers. Buffer service will dispatch live updates.
6 lines
227 B
Rust
6 lines
227 B
Rust
fn main() -> Result<(), Box<dyn std::error::Error>> {
|
|
tonic_build::compile_protos("proto/session.proto")?;
|
|
tonic_build::compile_protos("proto/workspace.proto")?;
|
|
tonic_build::compile_protos("proto/buffer.proto")?;
|
|
Ok(())
|
|
}
|