First one-shot pass

This commit is contained in:
2026-02-10 14:29:23 -05:00
parent 739d79d6a2
commit f65e3d8413
48 changed files with 5409 additions and 2 deletions

12
src/generator/mod.rs Normal file
View File

@@ -0,0 +1,12 @@
pub mod code_syntax;
pub mod github_code;
pub mod passage;
pub mod phonetic;
pub mod transition_table;
use crate::engine::filter::CharFilter;
pub trait TextGenerator {
fn generate(&mut self, filter: &CharFilter, focused: Option<char>, word_count: usize)
-> String;
}