mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-22 04:10:01 +00:00
8 lines
209 B
TypeScript
8 lines
209 B
TypeScript
import { License } from '@/License';
|
|
import { Container } from 'typedi';
|
|
|
|
export function isLogStreamingEnabled(): boolean {
|
|
const license = Container.get(License);
|
|
return license.isLogStreamingEnabled();
|
|
}
|