Mountain/Vine/
mod.rs

1//! # Vine gRPC Module
2//!
3//! This module encapsulates all logic related to the gRPC-based
4//! Inter-Process Communication (IPC) system, codenamed "Vine". It manages both
5//! the server for listening to `Cocoon` and the client for sending messages to
6//! `Cocoon`.
7
8#![allow(non_snake_case, non_camel_case_types)]
9
10// --- Sub-modules ---
11pub mod Client;
12
13pub mod Error;
14
15pub mod Generated;
16
17pub mod Server;