2025-04-08 07:16:34 +02:00

9 lines
159 B
JavaScript

export class Installer {
constructor(configService) {
this.configService = configService;
}
isCodexInstalled = async () => {
return false;
}
}