Skip to content

Instantly share code, notes, and snippets.

@saeedhajinasiri
Created April 15, 2021 18:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save saeedhajinasiri/47f8d81c899ae6c0be25f3107eeb5d75 to your computer and use it in GitHub Desktop.
Save saeedhajinasiri/47f8d81c899ae6c0be25f3107eeb5d75 to your computer and use it in GitHub Desktop.
import { Injectable, HttpException } from '@nestjs/common';
import { BOOKS } from '../mocks/books.mock';
@Injectable()
export class BooksService {
books = BOOKS;
...
addBook(book): Promise {
return new Promise(resolve => {
this.books.push(book);
resolve(this.books);
});
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment