2020-09-21 18:39:22 +03:00

24 lines
1.7 KiB
TypeScript

export * from './debugController.service';
import { DebugControllerService } from './debugController.service';
export * from './dictionaryController.service';
import { DictionaryControllerService } from './dictionaryController.service';
export * from './fileUploadController.service';
import { FileUploadControllerService } from './fileUploadController.service';
export * from './licenseReportController.service';
import { LicenseReportControllerService } from './licenseReportController.service';
export * from './manualRedactionController.service';
import { ManualRedactionControllerService } from './manualRedactionController.service';
export * from './pdfMetaDataConfigurationController.service';
import { PdfMetaDataConfigurationControllerService } from './pdfMetaDataConfigurationController.service';
export * from './projectController.service';
import { ProjectControllerService } from './projectController.service';
export * from './reanalysisController.service';
import { ReanalysisControllerService } from './reanalysisController.service';
export * from './redactionLogController.service';
import { RedactionLogControllerService } from './redactionLogController.service';
export * from './rulesController.service';
import { RulesControllerService } from './rulesController.service';
export * from './statusController.service';
import { StatusControllerService } from './statusController.service';
export const APIS = [DebugControllerService, DictionaryControllerService, FileUploadControllerService, LicenseReportControllerService, ManualRedactionControllerService, PdfMetaDataConfigurationControllerService, ProjectControllerService, ReanalysisControllerService, RedactionLogControllerService, RulesControllerService, StatusControllerService];