blob: 1753cf59d4f0acf32913602833193bc9fb82499c (
plain)
1
2
3
4
5
6
7
8
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,
})
}
|