chore: format imports in gateway and session tools

This commit is contained in:
Gustavo Madeira Santana
2026-02-17 21:10:38 -05:00
parent 81db059627
commit 5a31da8eec
3 changed files with 4 additions and 4 deletions

View File

@@ -1,5 +1,4 @@
import type { Command } from "commander";
import type { DaemonInstallOptions, GatewayRpcOpts } from "./types.js";
import { inheritOptionFromParent } from "../command-options.js";
import {
runDaemonInstall,
@@ -9,6 +8,7 @@ import {
runDaemonStop,
runDaemonUninstall,
} from "./runners.js";
import type { DaemonInstallOptions, GatewayRpcOpts } from "./types.js";
function resolveInstallOptions(
cmdOpts: DaemonInstallOptions,

View File

@@ -1,8 +1,7 @@
import type { Command } from "commander";
import fs from "node:fs";
import path from "node:path";
import type { Command } from "commander";
import type { GatewayAuthMode } from "../../config/config.js";
import type { GatewayWsLogStyle } from "../../gateway/ws-logging.js";
import {
CONFIG_PATH,
loadConfig,
@@ -12,6 +11,7 @@ import {
} from "../../config/config.js";
import { resolveGatewayAuth } from "../../gateway/auth.js";
import { startGatewayServer } from "../../gateway/server.js";
import type { GatewayWsLogStyle } from "../../gateway/ws-logging.js";
import { setGatewayWsLogStyle } from "../../gateway/ws-logging.js";
import { setVerbose } from "../../globals.js";
import { GatewayLockError } from "../../infra/gateway-lock.js";