refactor: update HTTP module imports to use node: prefix for consistency

This commit is contained in:
Moyasee
2026-01-03 19:44:39 +02:00
parent 4584783f44
commit 6c4e8c406f
3 changed files with 4 additions and 4 deletions

View File

@@ -1,6 +1,6 @@
import axios from "axios";
import http from "http";
import https from "https";
import http from "node:http";
import https from "node:https";
import {
HOSTER_USER_AGENT,
extractHosterFilename,

View File

@@ -1,5 +1,5 @@
import axios from "axios";
import https from "https";
import https from "node:https";
import { logger } from "../logger";
interface UnlockResponse {

View File

@@ -1,5 +1,5 @@
import axios from "axios";
import http from "http";
import http from "node:http";
import cp from "node:child_process";
import fs from "node:fs";