mirror of
https://github.com/TECHNOFAB11/pay-respects.git
synced 2025-12-12 06:20:09 +01:00
11 lines
208 B
Rust
11 lines
208 B
Rust
use crate::suggestions::*;
|
|
use pay_respects_parser::parse_rules;
|
|
|
|
pub fn match_pattern(
|
|
executable: &str,
|
|
last_command: &str,
|
|
error_msg: &str,
|
|
shell: &str,
|
|
) -> Option<String> {
|
|
parse_rules!("rules");
|
|
}
|