1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
//! gRPC v2 protocol implementation.
//!
//! Provides gRPC service implementations that bridge
//! Protocol v2 types to the session/buffer system.
//!
//! # Architecture
//!
//! The gRPC services follow the data/presentation separation model:
//! - Server provides raw data (buffer content, mode, cursor position)
//! - Client handles presentation (colors, layout, rendering)
//!
//! Some services are stubs in `lib/server` because full implementation
//! requires application-level concerns (e.g., module loading belongs in runner).
//!
//! See `docs/architecture/server-client-split.md` for details.
pub mod auth;
mod buffer;
mod command;
mod debug;
mod editor;
mod extension;
mod input;
mod module;
mod notification;
pub mod notification_builder;
mod presence;
mod server_service;
mod state;
mod syntax;
pub use {
auth::AuthInterceptor, buffer::BufferServiceImpl, command::CommandServiceImpl,
debug::DebugServiceImpl, editor::EditorServiceImpl, extension::ExtensionServiceImpl,
input::InputServiceImpl, module::ModuleServiceImpl, notification::NotificationServiceImpl,
presence::PresenceServiceImpl, server_service::ServerServiceImpl, state::StateServiceImpl,
syntax::SyntaxServiceImpl,
};