Index: apps/mt-api/src/app/auth/auth.module.ts =================================================================== diff -u -rc434930351d0a3ec148b14837f65172719481858 -r08e6c591678c9f90c5b7e7031fa77e24d783c076 --- apps/mt-api/src/app/auth/auth.module.ts (.../auth.module.ts) (revision c434930351d0a3ec148b14837f65172719481858) +++ apps/mt-api/src/app/auth/auth.module.ts (.../auth.module.ts) (revision 08e6c591678c9f90c5b7e7031fa77e24d783c076) @@ -1,16 +1,16 @@ -import {HttpModule, Module} from '@nestjs/common'; +import {Module} from '@nestjs/common'; import {AuthService} from './auth.service'; import {SocketModule} from '../socket/socket.module'; import {ConfigModule} from "@nestjs/config"; +import {Store} from "../store"; @Module({ imports: [ SocketModule, ConfigModule, - HttpModule.register({}), ], - providers: [AuthService], - exports: [AuthService], + providers: [AuthService, Store], + exports: [AuthService, Store], }) export class AuthModule { }