chore: reorder and format imports for consistency across modules
All checks were successful
Lint / lint (push) Successful in 9m37s
All checks were successful
Lint / lint (push) Successful in 9m37s
This commit is contained in:
@@ -1,9 +1,9 @@
|
|||||||
import { Module } from "@nestjs/common";
|
import { Module } from "@nestjs/common";
|
||||||
|
import { ConfigModule } from "@nestjs/config";
|
||||||
import { AppController } from "./app.controller";
|
import { AppController } from "./app.controller";
|
||||||
import { AppService } from "./app.service";
|
import { AppService } from "./app.service";
|
||||||
import {DatabaseModule} from "./database/database.module";
|
import { CryptoModule } from "./crypto/crypto.module";
|
||||||
import {ConfigModule} from "@nestjs/config";
|
import { DatabaseModule } from "./database/database.module";
|
||||||
import {CryptoModule} from "./crypto/crypto.module";
|
|
||||||
|
|
||||||
@Module({
|
@Module({
|
||||||
imports: [
|
imports: [
|
||||||
@@ -11,7 +11,8 @@ import {CryptoModule} from "./crypto/crypto.module";
|
|||||||
CryptoModule,
|
CryptoModule,
|
||||||
ConfigModule.forRoot({
|
ConfigModule.forRoot({
|
||||||
isGlobal: true,
|
isGlobal: true,
|
||||||
})],
|
}),
|
||||||
|
],
|
||||||
controllers: [AppController],
|
controllers: [AppController],
|
||||||
providers: [AppService],
|
providers: [AppService],
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
import {Injectable, Logger} from "@nestjs/common";
|
import { Injectable, Logger } from "@nestjs/common";
|
||||||
import {ConfigService} from "@nestjs/config";
|
import { ConfigService } from "@nestjs/config";
|
||||||
import {ml_kem768} from "@noble/post-quantum/ml-kem.js";
|
import { ml_kem768 } from "@noble/post-quantum/ml-kem.js";
|
||||||
import {hash, verify} from "@node-rs/argon2";
|
import { hash, verify } from "@node-rs/argon2";
|
||||||
import * as jose from "jose";
|
import * as jose from "jose";
|
||||||
|
|
||||||
@Injectable()
|
@Injectable()
|
||||||
|
|||||||
Reference in New Issue
Block a user