mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-01-02 21:01:18 +00:00
669dd01ecc
Signed-off-by: David Mehren <git@herrmehren.de>
8 lines
221 B
TypeScript
8 lines
221 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { TypeOrmModule } from '@nestjs/typeorm';
|
|
import { Group } from './group.entity';
|
|
|
|
@Module({
|
|
imports: [TypeOrmModule.forFeature([Group])],
|
|
})
|
|
export class GroupsModule {}
|