blob: ae8e5dcd0df57a4ef27cf2a663b18688ad362964 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#[derive(Debug)]
pub struct ExecutableFinder;
impl Default for ExecutableFinder {
fn default() -> Self {
Self::new()
}
}
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!()
}
}
|