mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-24 03:57:06 -04:00

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>
8 lines
197 B
TypeScript
8 lines
197 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { HistoryService } from './history.service';
|
|
|
|
@Module({
|
|
providers: [HistoryService],
|
|
exports: [HistoryService],
|
|
})
|
|
export class HistoryModule {}
|