Skip to main content

stynx_code_commands/domain/
input_preprocessor.rs

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