import { HttpInterceptorFn } from '@angular/common/http';

export const serverErrorInterceptor: HttpInterceptorFn = (req, next) => {
  return next(req);
};