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 { JwtService } from '@nestjs/jwt'; |
||||
import { Connection } from '../../connection/connection'; |
||||
import { MetaService } from '../../meta/meta.service'; |
||||
import { GlobalModule } from '../global/global.module'; |
||||
import { UsersService } from './users.service'; |
||||
import { UsersController } from './users.controller'; |
||||
|
||||
@Module({ |
||||
imports: [GlobalModule], |
||||
controllers: [UsersController], |
||||
providers: [UsersService, MetaService, Connection, JwtService], |
||||
exports: [UsersService, Connection, MetaService], |
||||
providers: [UsersService, JwtService], |
||||
exports: [UsersService], |
||||
}) |
||||
export class UsersModule {} |
||||
|
Loading…
Reference in new issue