Skip to main content

little_kitty/
lib.rs

1#![cfg_attr(docsrs, feature(doc_cfg))]
2#![warn(missing_docs)]
3#![doc = include_str!(concat!("../", std::env!("CARGO_PKG_README")))]
4// See: https://stackoverflow.com/a/61417700
5// See: https://github.com/rust-lang/cargo/pull/11645#issuecomment-1536905941
6
7mod command;
8mod control;
9mod reader;
10mod response;
11mod utils;
12mod writer;
13
14/// Common commands.
15pub mod common;
16
17#[allow(unused_imports)]
18pub use {command::*, control::*, response::*};