mirror of
https://github.com/deepseek-ai/deepseek-harness.git
synced 2026-09-08 04:01:59 +00:00
7 lines
233 B
TypeScript
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()
|