chore(core): fixs some imports to protected_session

This commit is contained in:
Elian Doran 2026-01-06 12:27:00 +02:00
parent 01f3c32d92
commit b9a59fe0c4
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@ import { SqlService, SqlServiceParams } from "./services/sql/sql";
export type * from "./services/sql/types";
export * from "./services/sql/index";
export * as protected_session from "./services/encryption/protected_session";
export * as protected_session from "./services/protected_session";
export { default as data_encryption } from "./services/encryption/data_encryption"
export * as binary_utils from "./services/utils/binary";
export { default as date_utils } from "./services/utils/date";

View File

@ -1,6 +1,6 @@
"use strict";
import dataEncryptionService from "./data_encryption.js";
import dataEncryptionService from "./encryption/data_encryption";
let dataKey: Uint8Array | null = null;