mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-28 14:04:43 -04:00
Add monitoring module
Signed-off-by: David Mehren <git@herrmehren.de>
This commit is contained in:
parent
f98bf0d32d
commit
eab06c0296
6 changed files with 83 additions and 1 deletions
8
src/monitoring/monitoring.module.ts
Normal file
8
src/monitoring/monitoring.module.ts
Normal file
|
@ -0,0 +1,8 @@
|
|||
import { Module } from '@nestjs/common';
|
||||
import { MonitoringService } from './monitoring.service';
|
||||
|
||||
@Module({
|
||||
providers: [MonitoringService],
|
||||
exports: [MonitoringService],
|
||||
})
|
||||
export class MonitoringModule {}
|
Loading…
Add table
Add a link
Reference in a new issue