nzskkserv_core/
lib.rs

1pub mod error;
2pub mod log;
3pub mod server;
4
5pub use error::Error;
6pub use server::Server;
7
8#[derive(Clone)]
9pub enum Encoding {
10    Utf8,
11    Eucjp,
12}
13
14pub type Dict = std::collections::HashMap<String, String>;