rust-censure 0.2.0

Simple profanity filter.
Documentation
1
2
3
4
5
6
7
8
9
10
pub mod common;
pub mod ru;
pub mod en;

pub(crate) use crate::structs::LangData;

pub trait LangProvider {
    fn data(&self) -> LangData;
    fn split_line(&self, line: &str) -> Vec<String>;
}