1
2
3
4
5
6
7
//! # Textcat
//!
//! Library to extract and categorize texts by ngrams.
#![deny(missing_docs)]
#![allow(warnings)]
pub mod category;
pub mod ngram;