mirror of
https://github.com/immich-app/immich.git
synced 2025-12-31 01:00:38 -05:00
13 lines
396 B
TypeScript
13 lines
396 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { UserService } from './user.service';
|
|
import { UserController } from './user.controller';
|
|
import { TypeOrmModule } from '@nestjs/typeorm';
|
|
import { UserEntity } from './entities/user.entity';
|
|
|
|
@Module({
|
|
imports: [TypeOrmModule.forFeature([UserEntity])],
|
|
controllers: [UserController],
|
|
providers: [UserService],
|
|
})
|
|
export class UserModule {}
|