mirror of
https://github.com/anomalyco/opencode.git
synced 2026-05-04 23:40:48 +00:00
wip: zen
This commit is contained in:
parent
c1d754bec9
commit
1c31c2dd97
33 changed files with 396 additions and 356 deletions
20
cloud/app/src/routes/docs/index.ts
Normal file
20
cloud/app/src/routes/docs/index.ts
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
import type { APIEvent } from "@solidjs/start/server"
|
||||
|
||||
async function handler(evt: APIEvent) {
|
||||
const req = evt.request.clone()
|
||||
const url = new URL(req.url)
|
||||
const targetUrl = `https://dev.opencode.ai${url.pathname}${url.search}`
|
||||
const response = await fetch(targetUrl, {
|
||||
method: req.method,
|
||||
headers: req.headers,
|
||||
body: req.body,
|
||||
})
|
||||
return response
|
||||
}
|
||||
|
||||
export const GET = handler
|
||||
export const POST = handler
|
||||
export const PUT = handler
|
||||
export const DELETE = handler
|
||||
export const OPTIONS = handler
|
||||
export const PATCH = handler
|
||||
Loading…
Add table
Add a link
Reference in a new issue