An attempt to obtain a functional version with the various fixes implemented so far.

This commit is contained in:
darkpisto
2025-12-11 14:05:40 +01:00
parent 6a36b24162
commit ddcaf72e6e
13 changed files with 65 additions and 57 deletions

13
hooks/run.php Normal file
View File

@@ -0,0 +1,13 @@
#!/usr/bin/php
<?php
require __DIR__ . "/../../../3rdparty/autoload.php";
require __DIR__ . "/../lib/Command/.php";
require __DIR__. "/../../../lib/composer/autoload.php";
use OCA\NCDownloader\Command\cmdTool;
use Symfony\Component\Console\Application;
$app = new Application();
$cmd = new cmdTool();
$app->add($cmd);
$app->run();