mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-19 01:35:18 -04:00

This contains the module, a model which was adapted from the old code and two DTOs. Signed-off-by: David Mehren <git@herrmehren.de>
9 lines
236 B
TypeScript
9 lines
236 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { TypeOrmModule } from '@nestjs/typeorm';
|
|
import { Note } from './note.entity';
|
|
|
|
@Module({
|
|
imports: [TypeOrmModule.forFeature([Note])],
|
|
controllers: [],
|
|
})
|
|
export class NotesModule {}
|