mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-30 17:58:59 +00:00
15 lines
246 B
PHP
15 lines
246 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Services\StatusProbes\Contracts;
|
|
|
|
use App\Services\StatusProbes\ProbeResult;
|
|
|
|
interface ServiceProbeInterface
|
|
{
|
|
public function identifier(): string;
|
|
|
|
public function probe(): ProbeResult;
|
|
}
|