This commit is contained in:
xief
2025-06-24 11:48:26 +08:00
commit 305a30372a
16 changed files with 4325 additions and 0 deletions

7
src/processors.ts Normal file
View File

@@ -0,0 +1,7 @@
export abstract class ProcessorBase {
public readonly name: string = '';
public readonly version: string = '1.0.0';
public abstract exec(...args: any[]): any
}