mirror of
https://github.com/unraid/api.git
synced 2026-05-09 08:41:12 -05:00
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:
@@ -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,2 +1,2 @@
|
||||
export * from "./fragment-masking";
|
||||
export * from "./gql";
|
||||
export * from "./gql";
|
||||
|
||||
Reference in New Issue
Block a user