Refactor config loading (in progress 3)

This commit is contained in:
2025-07-15 00:15:56 -05:00
parent 0a045762bc
commit 4b2d63335a
19 changed files with 380 additions and 360 deletions

View File

@@ -0,0 +1,8 @@
import { ControllerResponse } from '../types/common.types.js';
export abstract class BaseController {
// Instance method (must be implemented by subclasses)
static capture(data: unknown): Promise<ControllerResponse> {
throw new Error(`Not implemented: capture: ${data}`);
}
}