incorrect path to init service class

there was a fatal error in the init process because it was looking for a
class that had been moved but the reference had not been updated, which
is now corrected
This commit is contained in:
ro 2024-06-02 20:52:01 -06:00
parent b268bfb49e
commit 35c22913f8
No known key found for this signature in database
GPG key ID: 29B551CDBD4D3B50

View file

@ -4,7 +4,7 @@ namespace App\Http\Controllers\API;
use App\Http\Controllers\Controller; use App\Http\Controllers\Controller;
use Illuminate\Http\Request; use Illuminate\Http\Request;
use App\Services\InitService; use App\Services\UpKeep\InitService;
class InitAPIController extends Controller class InitAPIController extends Controller
{ {