This commit is contained in:
kdeng00
2024-04-07 22:42:55 -04:00
parent 2377178492
commit 4cbe4ca41d
10 changed files with 41 additions and 53 deletions
+6 -11
View File
@@ -27,16 +27,13 @@ impl ActionManager {
}
// TODO: Implement
fn supported_actions(&self) {
}
fn supported_actions(&self) {}
// TODO: Implement
fn initialize(&self) {
}
fn initialize(&self) {}
// TODO: Implement
fn validate_flags(&self) {
}
fn validate_flags(&self) {}
// TODO: Implement
fn is_valid_flag(&self, flag: &String) -> bool{
fn is_valid_flag(&self, flag: &String) -> bool {
return false;
}
// TODO: Implement
@@ -44,11 +41,9 @@ impl ActionManager {
return false;
}
// TODO: Implement
fn print_action(&self) {
}
fn print_action(&self) {}
// TODO: Implement
fn print_flags(&self) {
}
fn print_flags(&self) {}
// TODO: Implement
fn parsed_flags(&self) -> Vec<String> {
return Vec::new();