mirror of
https://github.com/TECHNOFAB11/pay-respects.git
synced 2025-12-12 14:30:10 +01:00
12 lines
208 B
Rust
12 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");
|
||
|
|
}
|