mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-13 06:34:39 -04:00
Add RevisionsService
Signed-off-by: David Mehren <git@herrmehren.de>
This commit is contained in:
parent
b8af7301a1
commit
735980da7c
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