mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-06-03 16:38:50 -04:00
10 lines
280 B
TypeScript
10 lines
280 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { LoggerModule } from '../logger/logger.module';
|
|
import { HistoryService } from './history.service';
|
|
|
|
@Module({
|
|
providers: [HistoryService],
|
|
exports: [HistoryService],
|
|
imports: [LoggerModule],
|
|
})
|
|
export class HistoryModule {}
|