This commit is contained in:
thatben 2025-04-08 07:16:34 +02:00
parent c8d96425d8
commit 10e1a33cc4
No known key found for this signature in database
GPG Key ID: 62C543548433D43E

View File

@ -0,0 +1,9 @@
export class Installer {
constructor(configService) {
this.configService = configService;
}
isCodexInstalled = async () => {
return false;
}
}