refactor: cleanup eslint configuration
[poolifier.git] / examples / typescript / http-server-pool / express-hybrid / src / express-worker.ts
index 8cc041d4ee20c5f8e1fac45c96914019abcc2d9e..78a18d67f79eda45815b987bb9b3bafb6fe459e0 100644 (file)
@@ -1,11 +1,13 @@
 import type { Server } from 'node:http'
 import type { AddressInfo } from 'node:net'
+
+import express, { type Express, type Request, type Response } from 'express'
 import {
+  availableParallelism,
   ClusterWorker,
-  DynamicThreadPool,
-  availableParallelism
+  DynamicThreadPool
 } from 'poolifier'
-import express, { type Express, type Request, type Response } from 'express'
+
 import {
   type ClusterWorkerData,
   type ClusterWorkerResponse,