Skip to content

Instantly share code, notes, and snippets.

@airscholar
Created August 2, 2022 13:55
Show Gist options
  • Select an option

  • Save airscholar/ae5756c10c83f531cef372ed089e9e48 to your computer and use it in GitHub Desktop.

Select an option

Save airscholar/ae5756c10c83f531cef372ed089e9e48 to your computer and use it in GitHub Desktop.
import { RedisCacheModule } from './redis-cache/redis-cache.module';
import { Module } from '@nestjs/common';
import { AppController } from './app.controller';
import { AppService } from './app.service';
import { TodoModule } from './todo/todo.module';
@Module({
imports: [TodoModule, RedisCacheModule],
controllers: [AppController],
providers: [AppService],
})
export class AppModule {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment