Add RevisionsService

Signed-off-by: David Mehren <git@herrmehren.de>
This commit is contained in:
David Mehren 2020-07-26 20:57:28 +02:00
parent b8af7301a1
commit 735980da7c
No known key found for this signature in database
GPG key ID: 185982BA4C42B7C3
3 changed files with 45 additions and 0 deletions

View file

@ -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 {}