import type { Infrastructure } from '../../infrastructure/mod.js' import { buildPlatformLicensing } from './licensing/mod.js' interface Options { infrastructure: Infrastructure } export function buildPlatformService(options: Options) { return { licensing: buildPlatformLicensing(options), } as const }