mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-12-01 19:35:04 -05:00
9 lines
225 B
TypeScript
9 lines
225 B
TypeScript
|
import { Module } from '@nestjs/common';
|
||
|
import { TypeOrmModule } from '@nestjs/typeorm';
|
||
|
import { Author } from './author.entity';
|
||
|
|
||
|
@Module({
|
||
|
imports: [TypeOrmModule.forFeature([Author])],
|
||
|
})
|
||
|
export class AuthorsModule {}
|