mirror of
https://github.com/anomalyco/opencode.git
synced 2026-07-17 12:56:41 +02:00
5 lines
127 B
TypeScript
5 lines
127 B
TypeScript
export async function data() {
|
|
const json = await fetch("https://models.dev/api.json").then((x) => x.text())
|
|
return json
|
|
}
|