UNPKG

@apistudio/apim-cli

Version:

CLI for API Management Products

14 lines (10 loc) 447 B
import fs from 'fs/promises'; import path from 'path'; import { AbstractInventoryBuilder } from '../core/design/AbstractInventoryBuilder.js'; export class DefaultInventoryBuilder extends AbstractInventoryBuilder { async generateInventoryModule(outputPath: string): Promise<void> { // This will be implemented in the generate.ts file console.log(`Default implementation called with output path: ${outputPath}`); } } // Made with Bob