mirror of
https://github.com/louislam/dockge.git
synced 2024-11-24 20:04:03 +00:00
13 lines
439 B
TypeScript
13 lines
439 B
TypeScript
import { SocketHandler } from "../socket-handler.js";
|
|
import { DockgeServer } from "../dockge-server";
|
|
import { log } from "../log";
|
|
import { checkLogin, DockgeSocket } from "../util-server";
|
|
import { AgentSocket } from "../../common/agent-socket";
|
|
import { ALL_ENDPOINTS } from "../../common/util-common";
|
|
|
|
export class ManageAgentSocketHandler extends SocketHandler {
|
|
|
|
create(socket : DockgeSocket, server : DockgeServer) {
|
|
|
|
}
|
|
}
|