This commit is contained in:
ct
2025-08-11 02:35:35 +08:00
parent 4a80723243
commit f3c91b9a64
24 changed files with 2035 additions and 214 deletions

View File

@@ -2,6 +2,8 @@
namespace App\Providers;
use App\Models\CrawlShotJob;
use App\Observers\CrawlShotJobObserver;
use Illuminate\Support\ServiceProvider;
class AppServiceProvider extends ServiceProvider
@@ -19,6 +21,6 @@ public function register(): void
*/
public function boot(): void
{
//
CrawlShotJob::observe(CrawlShotJobObserver::class);
}
}