mirror of
https://github.com/vvsviridov/enm-cli.git
synced 2025-10-23 16:24:01 +00:00
14 lines
350 B
JavaScript
Executable File
14 lines
350 B
JavaScript
Executable File
|
|
|
|
async function scripting() {
|
|
const axiosConfig = {
|
|
text: 'Launching Scripting Shell...',
|
|
method: 'get',
|
|
url: this.amosUrl,
|
|
}
|
|
const response = await this.httpClient.request(axiosConfig)
|
|
await this.webSocketSession(response.config.headers, '/scripting-terminal-ws/command', { command: 'scripting' })
|
|
}
|
|
|
|
|
|
module.exports = scripting |