mirror of
https://github.com/apricote/Listory.git
synced 2026-01-13 21:21:02 +00:00
12 lines
350 B
TypeScript
12 lines
350 B
TypeScript
|
|
import { Module } from "@nestjs/common";
|
||
|
|
import { ReportsService } from "./reports.service";
|
||
|
|
import { ReportsController } from "./reports.controller";
|
||
|
|
import { ListensModule } from "src/listens/listens.module";
|
||
|
|
|
||
|
|
@Module({
|
||
|
|
imports: [ListensModule],
|
||
|
|
providers: [ReportsService],
|
||
|
|
controllers: [ReportsController],
|
||
|
|
})
|
||
|
|
export class ReportsModule {}
|