/**
 * Copyright IBM Corp. 2024, 2025
 */

export type Gateway = Record<string, any>;

export class GatewayFactory {
  create(raw: object): Gateway {
    return raw;
  }
}
