1
2
3
4
5
6
7
8
9
use super::{Word, Entity};

#[derive(Debug, Deserialize)]
pub struct Token {
    pub id: i32,
    pub space: bool,
    pub word: Word,
    pub entity: Entity,
}