fix: make canBeUsed non async

This commit is contained in:
2026-01-14 21:50:54 -03:00
parent 5877644ed9
commit 4abc2ff594
5 changed files with 7 additions and 4 deletions
+1 -1
View File
@@ -34,7 +34,7 @@ class AzureTTS implements TTSModule {
return { data: Buffer.concat(buffers) };
}
async canBeUsed(): Promise<boolean> {
canBeUsed(): boolean {
return true;
}
}