rename run.ts -> command.ts

This commit is contained in:
2025-02-21 17:34:59 -05:00
parent 4f5602a5df
commit 1e938b19b0
2 changed files with 4 additions and 2 deletions

View File

@ -1,4 +1,4 @@
import run from "./shell/command/run"
import run from "./shell/command/command"
import history from "./shell/history"
type InputClosure = (key_event: KeyboardEvent) => void

View File

@ -34,4 +34,6 @@ export default function run(term: Term, stdin: string) {
}
history.add(args.join(" "))
return false
}
}
export { unknown_command }