rust-censure 0.2.1

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

use std::sync::Arc;
pub(crate) use crate::structs::LangData;

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