ignore: cloud resource

This commit is contained in:
Dax Raad
2025-08-30 00:58:22 -04:00
parent 37f284f9a9
commit f821b55514
20 changed files with 180 additions and 17 deletions

View File

@@ -0,0 +1,9 @@
import type { APIEvent } from "@solidjs/start/server"
import { Resource } from "@opencode/cloud-resource"
import { json } from "@solidjs/router"
export async function GET(evt: APIEvent) {
return json({
data: Resource.Database.host,
})
}