Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | 193x 193x 193x 193x 193x 193x 193x 193x 193x 193x 193x 193x | import { defineCommand } from '../../lib/define-command.js';
import { operatorOpenSwaggerUi } from '../../lib/operator-commands.js';
import { addonIdOrNameArg } from '../global.args.js';
export const otoroshiOpenSwaggeruiCommand = defineCommand({
description: 'Open the Otoroshi Swagger UI in your browser',
since: '4.9.0',
options: {},
args: [addonIdOrNameArg],
async handler(_options, addonIdOrName) {
await operatorOpenSwaggerUi(addonIdOrName);
},
});
|