feat: server lint import & order (#750)
This commit is contained in:
@ -1,5 +1,6 @@
|
||||
import { HealthCheckService, HttpHealthIndicator } from '@nestjs/terminus';
|
||||
import { Test, TestingModule } from '@nestjs/testing';
|
||||
|
||||
import { HealthController } from 'src/health/health.controller';
|
||||
import { PrismaHealthIndicator } from 'src/health/indicators/prisma-health-indicator';
|
||||
|
||||
|
||||
@ -1,5 +1,6 @@
|
||||
import { Controller, Get } from '@nestjs/common';
|
||||
import { HealthCheck, HealthCheckService } from '@nestjs/terminus';
|
||||
|
||||
import { PrismaHealthIndicator } from 'src/health/indicators/prisma-health-indicator';
|
||||
|
||||
@Controller('healthz')
|
||||
|
||||
@ -1,5 +1,6 @@
|
||||
import { Module } from '@nestjs/common';
|
||||
import { TerminusModule } from '@nestjs/terminus';
|
||||
|
||||
import { HealthController } from 'src/health/health.controller';
|
||||
import { PrismaHealthIndicator } from 'src/health/indicators/prisma-health-indicator';
|
||||
|
||||
|
||||
@ -4,6 +4,7 @@ import {
|
||||
HealthIndicator,
|
||||
HealthIndicatorResult,
|
||||
} from '@nestjs/terminus';
|
||||
|
||||
import { PrismaService } from 'src/database/prisma.service';
|
||||
|
||||
@Injectable()
|
||||
|
||||
Reference in New Issue
Block a user