Skip to content

Commit

Permalink
Update google-books.ts
Browse files Browse the repository at this point in the history
Book Model wasn't being imported
  • Loading branch information
danielhdz56 authored Oct 6, 2017
1 parent 2b0e0cf commit 5ec05b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion example-app/app/core/services/google-books.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 5ec05b6

Please sign in to comment.