We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7d0993f commit 6256706Copy full SHA for 6256706
1 file changed
packages/opencode/src/server/routes/instance/index.ts
@@ -147,7 +147,7 @@ export const InstanceRoutes = (upgrade: UpgradeWebSocket): Hono => {
147
app.post(TuiPaths.selectSession, (c) => handler(c.req.raw, context))
148
app.get(TuiPaths.controlNext, (c) => handler(c.req.raw, context))
149
app.post(TuiPaths.controlResponse, (c) => handler(c.req.raw, context))
150
- app.get(WorkspacePaths.adaptors, (c) => handler(c.req.raw, context))
+ app.get(WorkspacePaths.adapters, (c) => handler(c.req.raw, context))
151
app.post(WorkspacePaths.list, (c) => handler(c.req.raw, context))
152
app.get(WorkspacePaths.list, (c) => handler(c.req.raw, context))
153
app.get(WorkspacePaths.status, (c) => handler(c.req.raw, context))
0 commit comments