blob: 9aa5a8bc1455f2b1bf92d52994273b49cb5e5cc9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#[derive(Debug)]
pub struct ExecutableFinder;
impl ExecutableFinder {
pub fn new() -> Self {
todo!()
}
pub fn add_suffix(&mut self, suffix: &str) {
todo!()
}
pub fn find(&self, name: &str, default: Option<&str>, dirs: &[String]) -> Option<String> {
todo!()
}
}
|