organize services into services folder

This commit is contained in:
Jesse Lucas
2020-03-29 16:51:12 -04:00
parent 2fe94736e6
commit 0361d303f2
24 changed files with 20 additions and 21 deletions
@@ -9,7 +9,7 @@ import {
} from '@angular/common/http';
import { Observable, of } from 'rxjs';
import { tap } from 'rxjs/operators';
import { RequestCacheService } from '../request-cache.service'
import { RequestCacheService } from '../services/request-cache.service'
@Injectable()
export class CachingInterceptor implements HttpInterceptor {
@@ -4,7 +4,7 @@ import {
HttpInterceptor, HttpHandler, HttpRequest, HttpHeaders
} from '@angular/common/http';
import { CookieService } from '../cookie.service';
import { CookieService } from '../services/cookie.service';
@Injectable()