refactor: streamline import statements in GraphQL service and ServiceSchema

- Consolidated import paths in graphql.service.ts and service.schema.ts to use relative paths for improved organization and consistency.
- Enhanced code readability by reducing unnecessary line breaks in import statements.
This commit is contained in:
2024-12-05 22:51:48 +07:00
parent bbec8aba03
commit eb05610b23
2 changed files with 3 additions and 8 deletions

View File

@@ -1,9 +1,4 @@
import {
Inject,
Injectable,
Logger,
UnauthorizedException,
} from '@nestjs/common'
import { Inject, Injectable, Logger, UnauthorizedException } from '@nestjs/common'
import { PrismaService } from '../Prisma/prisma.service'
import { Request } from 'express'