summaryrefslogtreecommitdiff
path: root/commands/src/shutdown.rs
blob: 969aa25e82fe7b3f743cb2d161174f6163a54cf1 (plain)
1
2
3
4
5
6
7
use toolkit::Toolkit;
use crate::parser::Command;

pub fn run(tk: &mut Toolkit, _command: Command) {
    tk.clear();
    tk.poweroff(false);
}