"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.transformArguments = exports.IS_READ_ONLY = void 0;
exports.IS_READ_ONLY = true;
function transformArguments(username, command) {
return [
'ACL',
'DRYRUN',
username,
...command
];
}
exports.transformArguments = transformArguments;