refactor(effect): unify service namespaces and align naming (#18093)

This commit is contained in:
Kit Langton 2026-03-18 13:34:36 -04:00 committed by GitHub
commit a800583aea
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
35 changed files with 2034 additions and 2059 deletions

View file

@ -14,7 +14,7 @@ import { LSP } from "../lsp"
import { Format } from "../format"
import { TuiRoutes } from "./routes/tui"
import { Instance } from "../project/instance"
import { Vcs, VcsService } from "../project/vcs"
import { Vcs } from "../project/vcs"
import { runPromiseInstance } from "@/effect/runtime"
import { Agent } from "../agent/agent"
import { Skill } from "../skill/skill"
@ -332,7 +332,7 @@ export namespace Server {
},
}),
async (c) => {
const branch = await runPromiseInstance(VcsService.use((s) => s.branch()))
const branch = await runPromiseInstance(Vcs.Service.use((s) => s.branch()))
return c.json({
branch,
})