Files
deepseek-harness/apps/web/src/main.ts
T

7 lines
233 B
TypeScript

/** Browser entry for the Web client. */
import { AppWebEntry } from '@deepseek-ai/dsh-client-web'
const el = document.getElementById('root')
if (el === null) throw new Error('web app: missing #root')
void new AppWebEntry(el).run()