chore: offload user input to InputManager

This commit is contained in:
binekrasik
2026-05-20 22:46:59 +02:00
parent abe52acaa7
commit 0649843821
7 changed files with 285 additions and 212 deletions

View File

@@ -21,7 +21,7 @@ export class Mkdir extends Program {
return 2
}
item.Create()
await item.Create()
return 0
}

View File

@@ -20,7 +20,7 @@ export class Touch extends Program {
return 1
}
item.Create()
await item.Create()
return 0
}