hedgedoc/src/history/history.module.ts
David Mehren 9d4e3a54d7
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>
2020-07-25 20:07:39 +02:00

8 lines
197 B
TypeScript

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