blob: a2b555b1bf9daafe321825143c741cbfc6b16eb7 (
plain)
1
2
3
4
5
6
7
8
9
10
|
//! Wipe invocation - Clear the terminal screen
const handler = @import("../handler.zig");
const result = @import("../../utils/types/result.zig");
const terminal = @import("../../graphics/terminal/terminal.zig");
pub fn invoke(ctx: *handler.InvocationContext) void {
terminal.clear_screen();
result.set_ok(ctx);
}
|