fix(pockethost): ResourceAllocator import

This commit is contained in:
Ben Allfree 2024-07-23 05:48:07 +00:00
parent 5734bf2a3d
commit af455164b1
3 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,6 @@
export * from './CleanupManager'
export * from './Logger'
export * from './ResourceAllocator'
export * from './TimerManager'
export * from './assert'
export * from './events'

View File

@ -1,5 +1,4 @@
export * from '../constants'
export * from './PromiseAllocator'
export * from './Settings'
export * from './SyslogLogger'
export * from './asyncExecutionGuard'

View File

@ -1,6 +1,6 @@
import getPort from 'get-port'
import { INITIAL_PORT_POOL_SIZE, mergeConfig, mkSingleton } from '../../core'
import { ResourceAllocator } from '../common/ResourceAllocator'
import { ResourceAllocator } from '../common'
export type Config = { maxPorts: number }
export const PortService = mkSingleton((config: Partial<Config> = {}) => {