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

11 lines
434 B
TypeScript
Raw Normal View History

/**
* Web application entry: thin bootstrap over the shell library. Everything —
* loader holding, module-table seeding, AppRoot gate, plugin assembly — lives
* in @deepseek-ai/dsh-client-web; this file only finds the mount point.
*/
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()