fix(imports): standardize import statements and correct module order

- Updated import statements in `index.ts` and `info.module.ts` to use consistent single quotes for string literals.
- Reordered the import of `CpuModule` in `info.module.ts` to maintain a logical structure.
- Ensured proper export syntax in `gql/index.ts` for consistency across the codebase.

This update enhances code readability and maintains uniformity in import styles.
This commit is contained in:
Eli Bosley
2025-12-22 16:27:46 -05:00
parent b40e733db7
commit 77d001c361
3 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -1,2 +1,2 @@
export * from "./fragment-masking.js";
export * from "./gql.js";
export * from './fragment-masking.js';
export * from './gql.js';
@@ -1,8 +1,8 @@
import { Module } from '@nestjs/common';
import { ConfigModule } from '@nestjs/config';
import { CpuModule } from '@app/unraid-api/graph/resolvers/info/cpu/cpu.module.js';
import { OnboardingTrackerModule } from '@app/unraid-api/config/onboarding-tracker.module.js';
import { CpuModule } from '@app/unraid-api/graph/resolvers/info/cpu/cpu.module.js';
import { DevicesResolver } from '@app/unraid-api/graph/resolvers/info/devices/devices.resolver.js';
import { DevicesService } from '@app/unraid-api/graph/resolvers/info/devices/devices.service.js';
import { DisplayService } from '@app/unraid-api/graph/resolvers/info/display/display.service.js';
+1 -1
View File
@@ -1,2 +1,2 @@
export * from "./fragment-masking";
export * from "./gql";
export * from "./gql";