Files
print-cli/app/Commands/InitWireguard.php
René Preuß 621b6cb5c0 Add autowire
Add logs command
Improve print jobs handling
Improve installation/documentation
2025-07-29 22:16:32 +02:00

33 lines
612 B
PHP

<?php
namespace App\Commands;
use App\Support\PrinterManager;
use Illuminate\Console\Scheduling\Schedule;
use LaravelZero\Framework\Commands\Command;
class InitWireguard extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'init:wireguard';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Initialize WireGuard configuration';
/**
* Execute the console command.
*/
public function handle(PrinterManager $printer)
{
//
}
}