Skip to content

Commit daddf10

Browse files
committed
server: organize imports
1 parent 2ac8e15 commit daddf10

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

server/src/plugin/runtime/node-fork-worker.ts

+3-5
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
1-
import { RuntimeWorkerOptions as RuntimeWorkerOptions } from "./runtime-worker";
21
import child_process from 'child_process';
3-
import path from 'path';
2+
import net from "net";
43
import { RpcMessage, RpcPeer } from "../../rpc";
5-
import { ChildProcessWorker } from "./child-process-worker";
6-
import { getPluginNodePath } from "../plugin-npm-dependencies";
74
import { SidebandSocketSerializer } from "../socket-serializer";
8-
import net from "net";
5+
import { ChildProcessWorker } from "./child-process-worker";
6+
import { RuntimeWorkerOptions } from "./runtime-worker";
97

108
export class NodeForkWorker extends ChildProcessWorker {
119

0 commit comments

Comments
 (0)