Refactor: Suffixe in helpers/

This commit is contained in:
MasterAcnolo
2026-03-18 09:13:47 +01:00
parent 1c27cc19cf
commit da393b19d9
13 changed files with 19 additions and 19 deletions

View File

@@ -1,9 +1,9 @@
const path = require("path");
const getUserBrowser = require("./getBrowser");
const { ffmpegPath, denoPath} = require("./path");
const getUserBrowser = require("./getBrowser.helpers.js");
const { ffmpegPath, denoPath} = require("./path.helpers.js");
const { configFeatures } = require("../../config.js");
const { logger } = require("../logger");
const { logger } = require("../logger.js");
function validateCodec(codec){

View File

@@ -1,7 +1,7 @@
const fs = require("fs");
const os = require("os");
const path = require("path");
const notify = require("./notify")
const notify = require("./notify.helpers")
const { logger } = require("../logger");
function getUserBrowser() {

View File

@@ -1,5 +1,5 @@
const { Notification, shell } = require("electron");
const { iconPaths } = require("./path");
const { iconPaths } = require("./path.helpers");
function notifyDownloadFinished(folder) {
const notif = new Notification({

View File

@@ -2,7 +2,7 @@ const path = require("path");
const fs = require("fs");
const os = require("os");
const { app } = require("electron");
const config = require("../../config");
const config = require("../../config.js");
const { logger } = require("../logger.js");