diff options
| author | bob <bcz@cs.brown.edu> | 2020-02-10 12:22:15 -0500 |
|---|---|---|
| committer | bob <bcz@cs.brown.edu> | 2020-02-10 12:22:15 -0500 |
| commit | 0a9e7f1c5847634cc495d8f571c2ecffcfa046f3 (patch) | |
| tree | dff497c2e95615d4fd097c25e43ba3c831c6664b /src/server/DashSession/DashSessionAgent.ts | |
| parent | f9fba837d850d33a38919962e575bc0ea4634d56 (diff) | |
| parent | 8fac2ba9a9c8b6066cf6a011c4bb0988c9f652fa (diff) | |
Merge branch 'master' of https://github.com/browngraphicslab/Dash-Web
Diffstat (limited to 'src/server/DashSession/DashSessionAgent.ts')
| -rw-r--r-- | src/server/DashSession/DashSessionAgent.ts | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/server/DashSession/DashSessionAgent.ts b/src/server/DashSession/DashSessionAgent.ts index d61e9aac1..85bfe14de 100644 --- a/src/server/DashSession/DashSessionAgent.ts +++ b/src/server/DashSession/DashSessionAgent.ts @@ -8,8 +8,11 @@ import { launchServer, onWindows } from ".."; import { readdirSync, statSync, createWriteStream, readFileSync, unlinkSync } from "fs"; import * as Archiver from "archiver"; import { resolve } from "path"; -import { AppliedSessionAgent, MessageHandler, ExitHandler, Monitor, ServerWorker } from "resilient-server-session"; import rimraf = require("rimraf"); +import { AppliedSessionAgent, ExitHandler } from "./Session/agents/applied_session_agent"; +import { ServerWorker } from "./Session/agents/server_worker"; +import { Monitor } from "./Session/agents/monitor"; +import { MessageHandler } from "./Session/agents/promisified_ipc_manager"; /** * If we're the monitor (master) thread, we should launch the monitor logic for the session. |
