mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-20 10:15:17 -04:00
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 {}
|