|
@@ -1,13 +0,0 @@
|
|
|
-import type { APIEvent } from "@solidjs/start/server"
|
|
|
|
|
-import { json } from "@solidjs/router"
|
|
|
|
|
-import { Database } from "@opencode-ai/console-core/drizzle/index.js"
|
|
|
|
|
-import { UserTable } from "@opencode-ai/console-core/schema/user.sql.js"
|
|
|
|
|
-
|
|
|
|
|
-export async function GET(_evt: APIEvent) {
|
|
|
|
|
- return json({
|
|
|
|
|
- data: await Database.use(async (tx) => {
|
|
|
|
|
- const result = await tx.$count(UserTable)
|
|
|
|
|
- return result
|
|
|
|
|
- }),
|
|
|
|
|
- })
|
|
|
|
|
-}
|
|
|