11 lines
185 B
Rust
11 lines
185 B
Rust
use anyhow::Result;
|
|
use boxutils::commands::Command;
|
|
use std::process::exit;
|
|
|
|
pub struct False;
|
|
|
|
impl Command for False {
|
|
fn execute(&self) -> Result<()> {
|
|
exit(1);
|
|
}
|
|
}
|