import { Tty, wait } from "../Tty.ts";

window.Terminal.registerCommand("git", async function (this: Tty, ...args) {
    switch (args[0]) {
        case "status":
            await wait(250);
            this.print("On branch production");
            this.print("Current working directory clean");
            await wait(500);
            return 0
    }
});
