mirror of
https://github.com/danog/dl2cloud.git
synced 2024-12-06 05:29:02 +01:00
11 lines
180 B
PHP
Executable File
11 lines
180 B
PHP
Executable File
#!/usr/bin/env php
|
|
<?php
|
|
|
|
require_once __DIR__.'/helper.php';
|
|
|
|
list($client) = parseArgs('account-info', $argv);
|
|
|
|
$accountInfo = $client->getAccountInfo();
|
|
|
|
print_r($accountInfo);
|