refactor: fix stale imports

This commit is contained in:
syntaxbullet
2026-01-08 16:39:34 +01:00
parent f92415b89c
commit 017f5ad818
20 changed files with 29 additions and 32 deletions

View File

@@ -2,9 +2,9 @@ import { exec } from "child_process";
import { promisify } from "util";
import { writeFile, readFile, unlink } from "fs/promises";
import { Client, TextChannel } from "discord.js";
import { getPostRestartEmbed, getInstallingDependenciesEmbed, getRunningMigrationsEmbed } from "./update.view";
import type { PostRestartResult } from "./update.view";
import type { RestartContext, UpdateCheckResult, UpdateInfo, CommitInfo } from "./update.types";
import { getPostRestartEmbed, getInstallingDependenciesEmbed, getRunningMigrationsEmbed } from "@/modules/admin/update.view";
import type { PostRestartResult } from "@/modules/admin/update.view";
import type { RestartContext, UpdateCheckResult, UpdateInfo, CommitInfo } from "@/modules/admin/update.types";
const execAsync = promisify(exec);