feat(proejct): project curd.

This commit is contained in:
Ivan Li
2021-01-31 19:42:17 +08:00
parent 7ba5e220d9
commit db6b699663
27 changed files with 1326 additions and 5 deletions

View File

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