This commit is contained in:
Daniel Supernault 2024-09-05 00:40:57 -06:00
parent 21da2b642c
commit 1210bf7502
No known key found for this signature in database
GPG key ID: 23740873EE6F76A1

View file

@ -2,10 +2,9 @@
namespace App\Services;
use Illuminate\Support\Str;
use Illuminate\Support\Facades\Http;
use Illuminate\Http\Client\RequestException;
use Illuminate\Http\Client\ConnectionException;
use Illuminate\Http\Client\RequestException;
use Illuminate\Support\Facades\Http;
class NodeinfoService
{
@ -77,6 +76,7 @@ class NodeinfoService
} catch (\Exception $e) {
return false;
}
return $res->json();
}
}