Spaces:
Runtime error
Runtime error
File size: 272 Bytes
4327358 |
1 2 3 4 5 6 7 8 |
import { WAHAEngine } from '@waha/structures/enums.dto';
export function getEngineName(): string {
// Load engine name from WHATSAPP_DEFAULT_ENGINE environment variable
// If not set - use WEBJS
return process.env.WHATSAPP_DEFAULT_ENGINE || WAHAEngine.WEBJS;
}
|