n8n/packages/cli/src/databases/repositories/eventDestinations.repository.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
336 B
TypeScript
Raw Normal View History

import { Service } from 'typedi';
import { DataSource, Repository } from 'typeorm';
import { EventDestinations } from '../entities/EventDestinations';
@Service()
export class EventDestinationsRepository extends Repository<EventDestinations> {
constructor(dataSource: DataSource) {
super(EventDestinations, dataSource.manager);
}
}