mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-09-28 20:15:51 +00:00
kata-ctl: Lint fixes to allow the branch to be built
Remove return value for branches that call `unimplemented!()`. Signed-off-by: James O. D. Hunt <james.o.hunt@intel.com>
This commit is contained in:
@@ -106,31 +106,24 @@ fn real_main() -> Result<()> {
|
||||
}
|
||||
"direct-volume" => {
|
||||
unimplemented!("Not implemented");
|
||||
Ok(())
|
||||
}
|
||||
"env" => {
|
||||
unimplemented!("Not implemented");
|
||||
Ok(())
|
||||
}
|
||||
"exec" => {
|
||||
unimplemented!("Not implemented");
|
||||
Ok(())
|
||||
}
|
||||
"factory" => {
|
||||
unimplemented!("Not implemented");
|
||||
Ok(())
|
||||
}
|
||||
"help" => {
|
||||
unimplemented!("Not implemented");
|
||||
Ok(())
|
||||
}
|
||||
"iptables" => {
|
||||
unimplemented!("Not implemented");
|
||||
Ok(())
|
||||
}
|
||||
"metrics" => {
|
||||
unimplemented!("Not implemented");
|
||||
Ok(())
|
||||
}
|
||||
"version" => {
|
||||
println!("{} version {} (type: rust)", NAME, version);
|
||||
|
Reference in New Issue
Block a user