server-esm: Change simple library import statements

This commit is contained in:
Elian Doran
2024-07-18 21:37:45 +03:00
parent 35d11cc0d2
commit 2750df04a3
61 changed files with 122 additions and 122 deletions

View File

@@ -6,11 +6,11 @@ import log from "../../services/log.js";
import noteService from "../../services/notes.js";
import attributeService from "../../services/attributes.js";
import BBranch from "../../becca/entities/bbranch.js";
import path = require('path');
import path from "path";
import protectedSessionService from "../protected_session.js";
import mimeService from "./mime.js";
import treeService from "../tree.js";
import yauzl = require('yauzl');
import yauzl from "yauzl";
import htmlSanitizer from "../html_sanitizer.js";
import becca from "../../becca/becca.js";
import BAttachment from "../../becca/entities/battachment.js";