feat: pubsub base redis.

This commit is contained in:
Ivan
2021-04-03 19:19:02 +08:00
parent 092cf9c418
commit bb3efd3714
15 changed files with 350 additions and 12 deletions

View File

@ -1,8 +1,10 @@
import { Module } from '@nestjs/common';
import { PasswordConverter } from './services/password-converter';
import { PubSubModule } from './pub-sub/pub-sub.module';
@Module({
providers: [PasswordConverter],
exports: [PasswordConverter],
imports: [PubSubModule],
})
export class CommonsModule {}