1pub(crate) mod command; 2pub(crate) mod response; 3 4pub use command::{Command, Language}; 5pub use response::Response; 6 7#[derive(Clone)] 8pub enum State { 9 Authorization, 10 Transaction, 11 Update, 12}