Add monitoring module

Signed-off-by: David Mehren <git@herrmehren.de>
This commit is contained in:
David Mehren 2020-07-26 21:36:28 +02:00
parent f98bf0d32d
commit eab06c0296
No known key found for this signature in database
GPG key ID: 6017AF117F9756CB
6 changed files with 83 additions and 1 deletions

View file

@ -0,0 +1,8 @@
import { Module } from '@nestjs/common';
import { MonitoringService } from './monitoring.service';
@Module({
providers: [MonitoringService],
exports: [MonitoringService],
})
export class MonitoringModule {}