diff --git a/app/Http/Controllers/Controller.php b/app/Http/Controllers/Controller.php index 03bf87e6..691173f4 100644 --- a/app/Http/Controllers/Controller.php +++ b/app/Http/Controllers/Controller.php @@ -2,12 +2,10 @@ namespace App\Http\Controllers; -use App\Enums\ConfigKey; use App\Enums\GroupConfigKey; use App\Enums\UserStatus; use App\Exceptions\UploadException; use App\Http\Api; -use App\Models\Config; use App\Models\Group; use App\Models\Image; use App\Models\Strategy; diff --git a/app/Models/Group.php b/app/Models/Group.php index 8aca3618..ba05cd42 100644 --- a/app/Models/Group.php +++ b/app/Models/Group.php @@ -2,7 +2,6 @@ namespace App\Models; -use App\Enums\ConfigKey; use App\Utils; use Carbon\Carbon; use Illuminate\Database\Eloquent\Factories\HasFactory; diff --git a/app/Models/Image.php b/app/Models/Image.php index 25a82250..cf8f9319 100644 --- a/app/Models/Image.php +++ b/app/Models/Image.php @@ -4,7 +4,6 @@ namespace App\Models; use App\Enums\GroupConfigKey; use App\Enums\ImagePermission; -use App\Enums\StrategyKey; use App\Services\ImageService; use Carbon\Carbon; use Illuminate\Database\Eloquent\Builder; diff --git a/app/Services/ImageService.php b/app/Services/ImageService.php index 88e541d5..83908164 100644 --- a/app/Services/ImageService.php +++ b/app/Services/ImageService.php @@ -9,7 +9,6 @@ use App\Enums\GroupConfigKey; use App\Enums\ImagePermission; use App\Enums\Scan\AliyunOption; use App\Enums\Strategy\KodoOption; -use App\Enums\Strategy\LocalOption; use App\Enums\StrategyKey; use App\Enums\UserConfigKey; use App\Enums\UserStatus;