rubin/net/mod.rs
1//! Client server protocol for running a store using network sockets
2//!
3//! This module contains implementations for the Server protocol which contains
4//! the store and parses incoming requests from Clients to access items in the store.
5//!
6//! The Client requests information from the store and is returned over TCP sockets.
7//!
8//! It behaves similarly to Redis but is not feature complete as of yet.
9
10pub mod client;
11pub mod parser;
12pub mod server;