mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-24 03:57:06 -04:00
15 lines
475 B
TypeScript
15 lines
475 B
TypeScript
/*
|
|
* SPDX-FileCopyrightText: 2021 The HedgeDoc developers (see AUTHORS file)
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
import { Module } from '@nestjs/common';
|
|
import { ConsoleLoggerService } from './console-logger.service';
|
|
import { NestConsoleLoggerService } from './nest-console-logger.service';
|
|
|
|
@Module({
|
|
providers: [ConsoleLoggerService, NestConsoleLoggerService],
|
|
exports: [ConsoleLoggerService, NestConsoleLoggerService],
|
|
})
|
|
export class LoggerModule {}
|