From 0c167e85af1ad5b4346f52269424afdfca26da9a Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Fri, 9 Jan 2026 10:03:52 +0100 Subject: [PATCH] style: sort configure imports --- src/commands/configure.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/commands/configure.ts b/src/commands/configure.ts index 3b80b0fca..14551cac5 100644 --- a/src/commands/configure.ts +++ b/src/commands/configure.ts @@ -21,6 +21,7 @@ import { ensureAuthProfileStore, upsertAuthProfile, } from "../agents/auth-profiles.js"; +import { resolveEnvApiKey } from "../agents/model-auth.js"; import { createCliProgress } from "../cli/progress.js"; import type { ClawdbotConfig } from "../config/config.js"; import { @@ -35,6 +36,7 @@ import { resolvePreferredNodePath } from "../daemon/runtime-paths.js"; import { resolveGatewayService } from "../daemon/service.js"; import { buildServiceEnvironment } from "../daemon/service-env.js"; import { ensureControlUiAssetsBuilt } from "../infra/control-ui-assets.js"; +import { upsertSharedEnvVar } from "../infra/env-file.js"; import type { RuntimeEnv } from "../runtime.js"; import { defaultRuntime } from "../runtime.js"; import { @@ -64,8 +66,6 @@ import { GOOGLE_GEMINI_DEFAULT_MODEL, } from "./google-gemini-model-default.js"; import { healthCommand } from "./health.js"; -import { resolveEnvApiKey } from "../agents/model-auth.js"; -import { upsertSharedEnvVar } from "../infra/env-file.js"; import { applyAuthProfileConfig, applyMinimaxConfig,