Created
August 2, 2022 13:55
-
-
Save airscholar/ae5756c10c83f531cef372ed089e9e48 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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