mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-18 17:25:16 -04:00
Add RevisionsService
Signed-off-by: David Mehren <git@herrmehren.de>
This commit is contained in:
parent
783d2cf5e4
commit
5ce8a532a8
3 changed files with 45 additions and 0 deletions
|
@ -1,8 +1,11 @@
|
|||
import { Module } from '@nestjs/common';
|
||||
import { TypeOrmModule } from '@nestjs/typeorm';
|
||||
import { Revision } from './revision.entity';
|
||||
import { RevisionsService } from './revisions.service';
|
||||
|
||||
@Module({
|
||||
imports: [TypeOrmModule.forFeature([Revision])],
|
||||
providers: [RevisionsService],
|
||||
exports: [RevisionsService],
|
||||
})
|
||||
export class RevisionsModule {}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue