Skip to main content

btrfs_cli/rescue/
create_control_device.rs

1use crate::{Format, Runnable};
2use anyhow::Result;
3use clap::Parser;
4
5/// Create /dev/btrfs-control
6#[derive(Parser, Debug)]
7pub struct RescueCreateControlDeviceCommand {}
8
9impl Runnable for RescueCreateControlDeviceCommand {
10    fn run(&self, _format: Format, _dry_run: bool) -> Result<()> {
11        todo!("implement rescue create-control-device")
12    }
13}