PhiloMind / src /courses /courses.module.ts
github-actions[bot]
Deploy Backend from GitHub Actions Commit: ca37b2a1c9dd5c702619ea7ae7b3260d2fb5663d
b185a6d
Raw
History Blame Contribute Delete
514 Bytes
import { Module } from "@nestjs/common";
import { CoursesService } from "./courses.service";
import { CoursesController } from "./courses.controller";
import { ChaptersController } from "./chapters.controller";
import { NodesController } from "./nodes.controller";
import { PodcastsController } from "./podcasts.controller";
@Module({
controllers: [
CoursesController,
ChaptersController,
NodesController,
PodcastsController,
],
providers: [CoursesService],
})
export class CoursesModule {}