add uploadspeed + downloadspeed +isp

This commit is contained in:
xiaomlove
2022-07-30 15:06:51 +08:00
parent 8a4f4a77cb
commit 1ed68b6058
28 changed files with 477 additions and 64 deletions

View File

@@ -2,7 +2,9 @@
namespace App\Providers;
use App\Events\SeedBoxRecordUpdated;
use App\Events\TorrentUpdated;
use App\Listeners\RemoveSeedBoxRecordCache;
use App\Listeners\SyncTorrentToEs;
use Illuminate\Auth\Events\Registered;
use Illuminate\Auth\Listeners\SendEmailVerificationNotification;
@@ -23,6 +25,9 @@ class EventServiceProvider extends ServiceProvider
TorrentUpdated::class => [
SyncTorrentToEs::class,
],
SeedBoxRecordUpdated::class => [
RemoveSeedBoxRecordCache::class,
],
];
/**