refactor: cleanup eslint configuration
[poolifier.git] / examples / typescript / smtp-client-pool / src / pool.ts
index 2fc53c980b20b9f26590e3408382f88cd86ada62..315bf4eab77274267d4f7928973b9d8733e5ec28 100644 (file)
@@ -1,7 +1,9 @@
-import { fileURLToPath } from 'node:url'
 import { dirname, extname, join } from 'node:path'
-import { DynamicThreadPool, availableParallelism } from 'poolifier'
+import { fileURLToPath } from 'node:url'
+
 import type SMTPTransport from 'nodemailer/lib/smtp-transport/index.js'
+import { availableParallelism, DynamicThreadPool } from 'poolifier'
+
 import type { WorkerData } from './types.js'
 
 const workerFile = join(