From d4f80d7bfee9490dafa5119b3baed2814448649d Mon Sep 17 00:00:00 2001 From: Daniel Hernandez Date: Sun, 8 Oct 2017 13:22:50 -0500 Subject: [PATCH] chore(Example): Update import path for book model (#458) --- example-app/app/core/services/google-books.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example-app/app/core/services/google-books.ts b/example-app/app/core/services/google-books.ts index 30f1ac82f4..7277951eaf 100644 --- a/example-app/app/core/services/google-books.ts +++ b/example-app/app/core/services/google-books.ts @@ -2,7 +2,7 @@ import 'rxjs/add/operator/map'; import { Injectable } from '@angular/core'; import { Http } from '@angular/http'; import { Observable } from 'rxjs/Observable'; -import { Book } from 'app/books/models/book'; +import { Book } from '../../books/models/book'; @Injectable() export class GoogleBooksService {