import { Injectable, HttpException } from '@nestjs/common'; import { COURSES } from './courses.mock'; @Injectable() export class CoursesService { courses = COURSES; }