withRouting( health: '/up', ) ->withMiddleware(function (Middleware $middleware) { // }) ->withExceptions(function (Exceptions $exceptions) { // }) ->withSchedule(function (Schedule $schedule) { $schedule->call(function () { logger()->info('[Test Job] ✅ Programación básica funcionando.'); })->everyMinute(); app()->booted(function () use ($schedule) { KonekoModuleBootManager::scheduleAll($schedule); }); }) ->create();