summaryrefslogtreecommitdiff
path: root/vendor/open-telemetry/exporter-otlp/ContentTypes.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/open-telemetry/exporter-otlp/ContentTypes.php')
-rw-r--r--vendor/open-telemetry/exporter-otlp/ContentTypes.php12
1 files changed, 12 insertions, 0 deletions
diff --git a/vendor/open-telemetry/exporter-otlp/ContentTypes.php b/vendor/open-telemetry/exporter-otlp/ContentTypes.php
new file mode 100644
index 000000000..8ac70d54a
--- /dev/null
+++ b/vendor/open-telemetry/exporter-otlp/ContentTypes.php
@@ -0,0 +1,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';
+}