chore: reorder and format imports for consistency across modules
All checks were successful
Lint / lint (push) Successful in 9m37s

This commit is contained in:
Mathis HERRIOT
2026-01-06 12:30:55 +01:00
parent c1bc68e3e3
commit 187c51f932
2 changed files with 9 additions and 8 deletions

View File

@@ -1,7 +1,7 @@
import {Injectable, Logger} from "@nestjs/common";
import {ConfigService} from "@nestjs/config";
import {ml_kem768} from "@noble/post-quantum/ml-kem.js";
import {hash, verify} from "@node-rs/argon2";
import { Injectable, Logger } from "@nestjs/common";
import { ConfigService } from "@nestjs/config";
import { ml_kem768 } from "@noble/post-quantum/ml-kem.js";
import { hash, verify } from "@node-rs/argon2";
import * as jose from "jose";
@Injectable()