mirror of https://github.com/nocodb/nocodb
Pranav C
2 years ago
10 changed files with 18 additions and 17 deletions
@ -1,13 +1,13 @@ |
|||||||
import { Module } from '@nestjs/common'; |
import { Module } from '@nestjs/common'; |
||||||
import { JwtService } from '@nestjs/jwt'; |
import { JwtService } from '@nestjs/jwt'; |
||||||
import { Connection } from '../../connection/connection'; |
import { GlobalModule } from '../global/global.module'; |
||||||
import { MetaService } from '../../meta/meta.service'; |
|
||||||
import { UsersService } from './users.service'; |
import { UsersService } from './users.service'; |
||||||
import { UsersController } from './users.controller'; |
import { UsersController } from './users.controller'; |
||||||
|
|
||||||
@Module({ |
@Module({ |
||||||
|
imports: [GlobalModule], |
||||||
controllers: [UsersController], |
controllers: [UsersController], |
||||||
providers: [UsersService, MetaService, Connection, JwtService], |
providers: [UsersService, JwtService], |
||||||
exports: [UsersService, Connection, MetaService], |
exports: [UsersService], |
||||||
}) |
}) |
||||||
export class UsersModule {} |
export class UsersModule {} |
||||||
|
Loading…
Reference in new issue