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