1 2 3 4 5 6 7 8 9 10
//! `termpulse clear` command. use anyhow::Result; use termpulse::Controller; pub fn run(_json: bool) -> Result<()> { let mut ctrl = Controller::auto(); ctrl.clear(); Ok(()) }