feat: add some utilities

This commit is contained in:
2026-03-26 22:33:04 +01:00
parent 21a1a34309
commit 983cf59476
10 changed files with 119 additions and 27 deletions

5
src/program/Program.ts Normal file
View File

@@ -0,0 +1,5 @@
import type { SimpleStream } from "../utils/SimpleStream";
export abstract class Program {
abstract Exec(stdin: SimpleStream<string>, stdout: SimpleStream<string>, args: string[]): Promise<number>
}