import { ErrorHandler } from '@angular/core';
import { SentryService } from './sentry.service';

export const SENTRY_PROVIDERS = [{
  provide: ErrorHandler,
  useClass: SentryService
}];
