escpos_rw/lib.rs
1//! escpos-rw: USB communication with ESC/POS (Epson) thermal printers
2//!
3//! escpos-rw is a "low level" fork of escpos-rs, aiming at providing the USB connection and read/write functions.
4//! - bug fixes
5//! - cleaning unused and unwanted code
6//! - adding read functionality
7
8pub use error::Error;
9pub use printer::Printer;
10
11mod error;
12mod printer;