dajarep 0.1.0

駄洒落を検出するライブラリです
Documentation
1
2
3
4
5
6
7
8
use crate::word::Word;
#[derive(Debug)]
pub struct Sentence {
    pub str: String,
    pub kana: String,
    pub yomi: String,
    pub words: Vec<Word>,
}