Files
opencode/packages/console/app/src/routes/openapi.json.ts
3c41e4e8f1
publish-github-action / publish (push) Has been cancelled
Update Nix Hashes / update (push) Has been cancelled
chore: rename repo references from sst/opencode to anomalyco/opencode (#6687)
Co-authored-by: Github Action <action@github.com>
2026-01-02 16:02:52 -05:00

8 lines
220 B
TypeScript

export async function GET() {
const response = await fetch(
"https://raw.githubusercontent.com/anomalyco/opencode/refs/heads/dev/packages/sdk/openapi.json",
)
const json = await response.json()
return json
}