move hash to utilities folder

This commit is contained in:
H. Saw 2024-04-26 03:00:42 +00:00
parent b4ea93911e
commit 0b7be21d03
3 changed files with 51 additions and 51 deletions

View file

@ -3,7 +3,7 @@ Ask product information to Google Gemini. */
// Import the storage management module. // Import the storage management module.
const secretariat = await import(chrome.runtime.getURL("scripts/secretariat.js")); const secretariat = await import(chrome.runtime.getURL("scripts/secretariat.js"));
import hash from "/scripts/strings/hash.js"; import hash from "/scripts/utils/hash.js";
import texts from "/scripts/strings/read.js"; import texts from "/scripts/strings/read.js";
// Don't forget to set the class as export default. // Don't forget to set the class as export default.

View file

@ -4,7 +4,7 @@ Manage the local cache.
import logging from "/scripts/logging.js"; import logging from "/scripts/logging.js";
import texts from "/scripts/strings/read.js"; import texts from "/scripts/strings/read.js";
import hash from "/scripts/strings/hash.js"; import hash from "/scripts/utils/hash.js";
/* Read all stored data in the browser cache. /* Read all stored data in the browser cache.