2026-07-19 21:17:57 +08:00
|
|
|
/**
|
|
|
|
|
* 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.
|
|
|
|
|
*/
|
2026-07-25 01:19:30 +08:00
|
|
|
import { AppWebEntry } from '@deepseek-ai/dsh-client-web'
|
2026-07-19 21:17:57 +08:00
|
|
|
|
|
|
|
|
const el = document.getElementById('root')
|
|
|
|
|
if (el === null) throw new Error('web app: missing #root')
|
2026-07-25 01:19:30 +08:00
|
|
|
void new AppWebEntry(el).run()
|