mirror of
https://github.com/apricote/Listory.git
synced 2026-02-07 02:07:03 +00:00
feat(api): add listen report endpoint
This commit is contained in:
parent
ddcdfff89b
commit
3828b841c2
9 changed files with 179 additions and 0 deletions
11
src/reports/reports.module.ts
Normal file
11
src/reports/reports.module.ts
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
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 {}
|
||||
Loading…
Add table
Add a link
Reference in a new issue