mirror of
https://github.com/CaramelFur/Picsur.git
synced 2025-10-30 17:05:47 +01:00
12 lines
333 B
TypeScript
12 lines
333 B
TypeScript
|
|
import { Module } from '@nestjs/common';
|
||
|
|
import { TypeOrmModule } from '@nestjs/typeorm';
|
||
|
|
import { UserEntity } from './user.entity';
|
||
|
|
import { UsersService } from './users.service';
|
||
|
|
|
||
|
|
@Module({
|
||
|
|
imports: [TypeOrmModule.forFeature([UserEntity])],
|
||
|
|
providers: [UsersService],
|
||
|
|
exports: [UsersService],
|
||
|
|
})
|
||
|
|
export class UsersModule {}
|