UNPKG

@oracle/suitecloud-cli

Version:
20 lines (18 loc) 681 B
/* ** Copyright (c) 2024 Oracle and/or its affiliates. All rights reserved. ** Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl. */ 'use strict'; const Command = require('../../Command'); const ManageAccountAction = require('./ManageAccountAction'); const ManageAccountInputHandler = require('./ManageAccountInputHandler'); const ManageAccountOutputHandler = require('./ManageAccountOutputHandler'); module.exports = { create(options) { return Command.Builder.withOptions(options) .withAction(ManageAccountAction) .withInput(ManageAccountInputHandler) .withOutput(ManageAccountOutputHandler) .build(); } };