core: reorganize ConfigPaths module export for cleaner dependency management

This commit is contained in:
Dax Raad
2026-04-16 13:32:22 -04:00
parent 03e20e6ac1
commit cefa7f04c6
2 changed files with 3 additions and 1 deletions

View File

@@ -20,7 +20,6 @@ import { Event } from "../server/event"
import { Account } from "@/account"
import { isRecord } from "@/util/record"
import { InvalidError, JsonError } from "./error"
import * as ConfigPaths from "./paths"
import type { ConsoleState } from "./console-state"
import { AppFileSystem } from "@opencode-ai/shared/filesystem"
import { InstanceState } from "@/effect"
@@ -38,6 +37,7 @@ import { ConfigParse } from "./parse"
import { ConfigPermission } from "./permission"
import { ConfigProvider } from "./provider"
import { ConfigSkills } from "./skills"
import { ConfigPaths } from "./paths"
const log = Log.create({ service: "config" })

View File

@@ -1,3 +1,5 @@
export * as ConfigPaths from "./paths"
import path from "path"
import { Filesystem } from "@/util"
import { Flag } from "@/flag/flag"