mirror of
https://github.com/hexedtech/codemp-vscode.git
synced 2024-11-22 15:34:49 +01:00
chore: added events to modules, added some docs
This commit is contained in:
parent
1f32834572
commit
911ed4e212
1 changed files with 7 additions and 1 deletions
|
@ -1,4 +1,11 @@
|
||||||
|
//! # codemp Server
|
||||||
|
//!
|
||||||
|
//! The codemp server itself, in charge of handling the global state, merging operations from
|
||||||
|
//! all clients and synching everyone's cursor.
|
||||||
|
//!
|
||||||
|
|
||||||
pub mod actor;
|
pub mod actor;
|
||||||
|
pub mod events;
|
||||||
pub mod service;
|
pub mod service;
|
||||||
|
|
||||||
use std::sync::Arc;
|
use std::sync::Arc;
|
||||||
|
@ -28,6 +35,5 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
|
||||||
.serve(addr)
|
.serve(addr)
|
||||||
.await?;
|
.await?;
|
||||||
|
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue