1
2
3
4
5
6
7
8
9
10
//! RPC functionality for [`neovim`](crate::neovim::Neovim)
//!
//! For most plugins, the main implementation work will consist of defining and
//! implementing the [`handler`](crate::rpc::handler::Handler).
pub mod handler;
pub mod model;
pub mod unpack;

pub use self::model::{IntoVal, RpcMessage};
pub use rmpv::Value;