fix: add missing crypto import
[poolifier.git] / src / pools / cluster / fixed.ts
index 2e89b3232dccbc321907b02a73b583d650ee1661..b8a73e4b0562fff6fbca6f48cab4b582c3c5a562 100644 (file)
@@ -1,5 +1,5 @@
-import type { ClusterSettings, Worker } from 'cluster'
-import cluster from 'cluster'
+import type { ClusterSettings, Worker } from 'node:cluster'
+import cluster from 'node:cluster'
 import type { MessageValue } from '../../utility-types'
 import { AbstractPool } from '../abstract-pool'
 import type { PoolOptions } from '../pool'