mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-19 09:45:37 -04:00

This contains the module and a model which still needs many properties. Signed-off-by: David Mehren <git@herrmehren.de>
8 lines
225 B
TypeScript
8 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 {}
|