This commit is contained in:
2025-04-26 03:15:11 +08:00
parent 9eb4d06939
commit bcc12209e0
28 changed files with 1708 additions and 126 deletions

10
assistant/src/server.ts Normal file
View File

@@ -0,0 +1,10 @@
import { app } from './app.ts';
import { proxyRoute, proxyWs } from './services/proxy/proxy-page-index.ts';
app.listen(51015, () => {
console.log('Server is running on http://localhost:51015');
});
app.server.on(proxyRoute);
proxyWs();