Merge pull request #51261 from thaJeztah/fix_api_godoc

api/types: fix godoc
This commit is contained in:
Paweł Gronowski
2025-10-22 13:35:09 +02:00
committed by GitHub
2 changed files with 10 additions and 10 deletions

View File

@@ -1,19 +1,19 @@
package types
const (
// MediaTypeRawStream is vendor specific MIME-Type set for raw TTY streams
// MediaTypeRawStream is vendor specific MIME-Type set for raw TTY streams.
MediaTypeRawStream = "application/vnd.docker.raw-stream"
// MediaTypeMultiplexedStream is vendor specific MIME-Type set for stdin/stdout/stderr multiplexed streams
// MediaTypeMultiplexedStream is vendor specific MIME-Type set for stdin/stdout/stderr multiplexed streams.
MediaTypeMultiplexedStream = "application/vnd.docker.multiplexed-stream"
// MediaTypeJSON is the MIME-Type for JSON objects
// MediaTypeJSON is the MIME-Type for JSON objects.
MediaTypeJSON = "application/json"
// MediaTypeNDJson is the MIME-Type for Newline Delimited JSON objects streams
// MediaTypeNDJSON is the MIME-Type for Newline Delimited JSON objects streams.
MediaTypeNDJSON = "application/x-ndjson"
// MediaTypeJsonSequence is the MIME-Type for JSON Text Sequences (RFC7464)
// MediaTypeJSONSequence is the MIME-Type for JSON Text Sequences (RFC7464).
MediaTypeJSONSequence = "application/json-seq"
)