Add redirects
All checks were successful
Gitea Actions Demo / build (push) Successful in 5m20s

This commit is contained in:
2023-12-04 16:46:16 -07:00
parent 6ecdd5a0b8
commit d00fe6fdb7
11 changed files with 82 additions and 50 deletions

View File

@@ -19,6 +19,7 @@ import { BullModule } from '@nestjs/bull';
import { ScheduleModule } from '@nestjs/schedule';
import { RedisClientOptions } from 'redis';
import { redisStore } from 'cache-manager-redis-yet';
import { RedirectsModule } from './redirects/redirects.module';
@Module({
imports: [
@@ -72,8 +73,9 @@ import { redisStore } from 'cache-manager-redis-yet';
OgScraperModule,
MinioModule,
KvModule,
RedirectsModule,
],
controllers: [AppController],
providers: [AppService],
})
export class AppModule {}
export class AppModule { }