Files
tt-rss/vendor/open-telemetry/sdk/Trace/IdGeneratorInterface.php
T
2023-10-20 21:13:39 +03:00

13 lines
198 B
PHP

<?php
declare(strict_types=1);
namespace OpenTelemetry\SDK\Trace;
interface IdGeneratorInterface
{
public function generateTraceId(): string;
public function generateSpanId(): string;
}