mirror of
https://github.com/hexedtech/codemp.git
synced 2024-11-22 15:24:48 +01:00
zaaarf
94a7786812
Co-authored-by: alemi <me@alemi.dev> Co-authored-by: frelodev <frelodev@gmail.com>
11 lines
281 B
Protocol Buffer
11 lines
281 B
Protocol Buffer
syntax = "proto2";
|
|
|
|
package cursor_service;
|
|
import "cursor.proto";
|
|
import "user.proto";
|
|
|
|
// handle cursor events and broadcast to all users
|
|
service Cursor {
|
|
// subscribe to a workspace's cursor events
|
|
rpc Attach (stream cursor.CursorEvent) returns (stream cursor.CursorEvent);
|
|
}
|