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