forked from PinSpace-Org/GistPin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgists.module.ts
More file actions
19 lines (18 loc) 路 854 Bytes
/
Copy pathgists.module.ts
File metadata and controls
19 lines (18 loc) 路 854 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { Module } from '@nestjs/common';
import { TypeOrmModule } from '@nestjs/typeorm';
import { ScheduleModule } from '@nestjs/schedule';
import { Gist } from './entities/gist.entity';
import { GistRepository } from './gist.repository';
import { GistsService } from './gists.service';
import { GistsController } from './gists.controller';
import { GistCleanupService } from './gist-cleanup.service';
import { GeoModule } from '../geo/geo.module';
import { IpfsModule } from '../ipfs/ipfs.module';
import { SorobanModule } from '../soroban/soroban.module';
@Module({
imports: [ScheduleModule.forRoot(), TypeOrmModule.forFeature([Gist]), GeoModule, IpfsModule, SorobanModule],
controllers: [GistsController],
providers: [GistRepository, GistsService, GistCleanupService],
exports: [GistsService, GistRepository],
})
export class GistsModule {}