diff --git a/src/handlers/encryption.ts b/src/handlers/encryption/index.ts similarity index 84% rename from src/handlers/encryption.ts rename to src/handlers/encryption/index.ts index de5a7b9..8b6512c 100644 --- a/src/handlers/encryption.ts +++ b/src/handlers/encryption/index.ts @@ -1,8 +1,8 @@ import crypto from "crypto"; -import { secretKey, algorithm } from "../config/encryption"; +import { secretKey, algorithm } from "../../config/encryption"; -import { IEncryptionData } from "../interfaces/EncryptionData"; +import { IEncryptionData } from "../../interfaces/EncryptionData"; const iv = crypto.randomBytes(16);