@apistudio/apim-cli
Version:
CLI for API Management Products
14 lines (13 loc) • 420 B
JavaScript
import { LWGWRuntimeInventory } from "@apic/lwgw-smith-inventory";
import { LWGWRuntimeTransformer } from "./lwgw_runtime_transformer.js";
export class LWGWRuntimeSDK {
constructor() {
this.inventory = new LWGWRuntimeInventory();
}
get transformer() {
if (!this._transformer) {
this._transformer = new LWGWRuntimeTransformer();
}
return this._transformer;
}
}