Initialize TypeORM for Group entity

Signed-off-by: David Mehren <git@herrmehren.de>
This commit is contained in:
David Mehren 2020-08-13 20:22:04 +02:00
parent 82f6e6920c
commit 669dd01ecc
No known key found for this signature in database
GPG key ID: 6017AF117F9756CB

View file

@ -1,4 +1,8 @@
import { Module } from '@nestjs/common';
import { TypeOrmModule } from '@nestjs/typeorm';
import { Group } from './group.entity';
@Module({})
@Module({
imports: [TypeOrmModule.forFeature([Group])],
})
export class GroupsModule {}