mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-31 07:08:40 -04:00
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:
parent
27126bcde1
commit
9d4e3a54d7
5 changed files with 123 additions and 0 deletions
8
src/history/history.module.ts
Normal file
8
src/history/history.module.ts
Normal file
|
@ -0,0 +1,8 @@
|
|||
import { Module } from '@nestjs/common';
|
||||
import { HistoryService } from './history.service';
|
||||
|
||||
@Module({
|
||||
providers: [HistoryService],
|
||||
exports: [HistoryService],
|
||||
})
|
||||
export class HistoryModule {}
|
Loading…
Add table
Add a link
Reference in a new issue