mirror of
https://gitea.toothfairyai.com/ToothFairyAI/tf_code.git
synced 2026-03-29 21:33:54 +00:00
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
|
|
}
|