fix: add missing crypto import
[poolifier.git] / src / pools / thread / fixed.ts
index 13a280b54723e2fcf18f2af5ce73322d4e4f8a11..a37ccbf76b5864b8cc4f27b847596d7b9c533d38 100644 (file)
@@ -1,4 +1,9 @@
-import { isMainThread, MessageChannel, SHARE_ENV, Worker } from 'worker_threads'
+import {
+  isMainThread,
+  MessageChannel,
+  SHARE_ENV,
+  Worker
+} from 'node:worker_threads'
 import type { Draft, MessageValue } from '../../utility-types'
 import { AbstractPool } from '../abstract-pool'
 import type { PoolOptions } from '../pool'