1 2 3 4 5
use stynx_code_errors::AppResult; pub trait InputPreprocessor: Send + Sync { fn expand(&self, input: &str) -> AppResult<String>; }