Files
mini-redis/src/lib.rs
Avery Harnish 80511f2cb5 add cli for server/client (#4)
This PR adds a CLI to main.rs that allows you to run the redis server and eventually the redis client.
2020-03-03 09:15:20 -08:00

24 lines
268 B
Rust

pub const DEFAULT_PORT: &str = "6379";
pub mod client;
mod cmd;
use cmd::Command;
mod conn;
use conn::Connection;
mod frame;
use frame::Frame;
mod kv;
use kv::Kv;
mod parse;
use parse::{Parse, ParseError};
pub mod server;
mod shutdown;
use shutdown::Shutdown;