summaryrefslogtreecommitdiff
path: root/vendor/open-telemetry/exporter-otlp/ContentTypes.php
blob: 8ac70d54a37bbb8e8f30fa03e2bbcf8def2d2777 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<?php

declare(strict_types=1);

namespace OpenTelemetry\Contrib\Otlp;

interface ContentTypes
{
    public const PROTOBUF = 'application/x-protobuf';
    public const JSON     = 'application/json';
    public const NDJSON   = 'application/x-ndjson';
}