Add config-diff CLI Command (#1168)

---------

Co-authored-by: Michael Kaufmann <d00p@froxlor.org>
This commit is contained in:
Daniel
2023-08-12 15:03:16 +08:00
committed by GitHub
parent 4711a41436
commit b0fae4bd14
2 changed files with 180 additions and 0 deletions

View File

@@ -26,6 +26,7 @@
declare(strict_types=1);
use Froxlor\Cli\ConfigDiff;
use Symfony\Component\Console\Application;
use Froxlor\Cli\RunApiCommand;
use Froxlor\Cli\ConfigServices;
@@ -61,4 +62,5 @@ $application->add(new InstallCommand());
$application->add(new MasterCron());
$application->add(new UserCommand());
$application->add(new ValidateAcmeWebroot());
$application->add(new ConfigDiff());
$application->run();