mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-29 11:24:23 -05:00
bcc9ec9c75
Signed-off-by: David Mehren <git@herrmehren.de>
14 lines
353 B
TypeScript
14 lines
353 B
TypeScript
/*
|
|
* SPDX-FileCopyrightText: 2021 The HedgeDoc developers (see AUTHORS file)
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
import { Module } from '@nestjs/common';
|
|
import { TypeOrmModule } from '@nestjs/typeorm';
|
|
|
|
import { Author } from './author.entity';
|
|
|
|
@Module({
|
|
imports: [TypeOrmModule.forFeature([Author])],
|
|
})
|
|
export class AuthorsModule {}
|