Add HistoryModule

This contains the module, a service (which only returns mock data), a model and two DTOs for history entries.

Signed-off-by: David Mehren <git@herrmehren.de>
This commit is contained in:
David Mehren 2020-07-25 20:07:39 +02:00
parent 27126bcde1
commit 9d4e3a54d7
No known key found for this signature in database
GPG key ID: 185982BA4C42B7C3
5 changed files with 123 additions and 0 deletions

View file

@ -0,0 +1,8 @@
import { Module } from '@nestjs/common';
import { HistoryService } from './history.service';
@Module({
providers: [HistoryService],
exports: [HistoryService],
})
export class HistoryModule {}