kyoto_protocol 0.1.0

Protocol module for kyoto
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use bytes::Bytes;

#[derive(Debug)]
pub enum Command {
    Get {
        key: String,
    },
    Set {
        key: String,
        value: Bytes,
    },
    Info { },
}