8 lines
220 B
TypeScript
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
|
|
}
|