Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | 10x 10x 10x 10x 10x 10x 10x | import { Module, HttpModule } from '@nestjs/common';
import { EnvironmentService } from '../common_services/config';
import JwtValidator from './utils/jwt/jwtValidator';
import { SmsService } from './smsService';
import { Auth0Service } from './auth0Service';
import JwtLib from './utils/jwt/jwtLib';
@Module({
imports: [
HttpModule,
],
providers: [
EnvironmentService,
JwtValidator,
JwtLib,
SmsService,
Auth0Service,
],
exports: [Auth0Service, JwtValidator, SmsService],
})
export class Auth0Module {}
|