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

@@ -30,9 +30,9 @@ export class Terminal {
this.NewPage()
}
LoadShell(shell: Shell) {
async LoadShell(shell: Shell) {
this.shell = shell
this.shell.Init()
await this.shell.Init()
}
GetShell(): Shell | undefined {