feat: working filesystem

This commit is contained in:
binekrasik
2026-05-15 14:16:11 +02:00
parent 97b9994594
commit 4c67f2aee3
15 changed files with 449 additions and 95 deletions

View File

@@ -41,7 +41,7 @@ export const SetCurrentTerminal = (terminal: Terminal) => CurrentTerminal = term
export const GetCurrentTerminal = (): Terminal => CurrentTerminal
// Initializes the app
const init = () => {
const init = async () => {
const localBroadcaster = new EventBroadcaster()
// creates keyboard listeners for the local event broadcaster
@@ -51,5 +51,5 @@ const init = () => {
)
const terminal = new Terminal()
terminal.LoadShell(new Wush(localBroadcaster, terminal))
await terminal.LoadShell(new Wush(localBroadcaster, terminal))
}