mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 22:04:56 +00:00
19 lines
378 B
TypeScript
19 lines
378 B
TypeScript
/**
|
|
* DBAL Daemon Page
|
|
*/
|
|
export const metadata = {
|
|
title: 'DBAL Daemon',
|
|
description: 'DBAL Daemon Management',
|
|
}
|
|
|
|
export function DBALDaemonPage() {
|
|
return (
|
|
<div>
|
|
<h1>DBAL Daemon</h1>
|
|
<p>DBAL Daemon management interface.</p>
|
|
<p>Development mode: Direct TypeScript DBAL</p>
|
|
<p>Production mode: C++ Daemon via WebSocket</p>
|
|
</div>
|
|
)
|
|
}
|