1
2
3
4
5
6
7
8
9
10
11
12
pub(crate) mod command;
pub(crate) mod response;

pub use command::{Command, Language};
pub use response::Response;

#[derive(Clone)]
pub enum State {
    Authorization,
    Transaction,
    Update,
}