nose-pluto/src/shell.ts
Chris Wanstrath 3ff1b9f3fa wip
2025-09-20 18:12:41 -07:00

11 lines
211 B
TypeScript

////
// runs commands and such.
type CommandResult = {
type: "ok" | "error"
data: any
}
export function runCommand(input: string): CommandResult {
return { type: "ok", data: "command: " + input }
}