mirror of
https://github.com/stonith404/pingvin-share.git
synced 2024-11-05 23:40:12 +01:00
10 lines
232 B
TypeScript
10 lines
232 B
TypeScript
|
import { Module } from "@nestjs/common";
|
||
|
import { FileModule } from "src/file/file.module";
|
||
|
import { JobsService } from "./jobs.service";
|
||
|
|
||
|
@Module({
|
||
|
imports: [FileModule],
|
||
|
providers: [JobsService],
|
||
|
})
|
||
|
export class JobsModule {}
|