mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 01:26:44 +00:00
9 lines
198 B
TypeScript
9 lines
198 B
TypeScript
// eslint-disable-next-line import-x/no-cycle
|
|
import { ServiceB } from './service-b';
|
|
import { Service } from '../../di';
|
|
|
|
@Service()
|
|
export class ServiceA {
|
|
constructor(readonly b: ServiceB) {}
|
|
}
|