Merge pull request #51760 from thaJeztah/fix_godoc

api/types/jsonstream: Message: fix godoc
This commit is contained in:
Austin Vazquez
2025-12-18 13:07:27 -06:00
committed by GitHub
2 changed files with 4 additions and 4 deletions

View File

@@ -2,9 +2,9 @@ package jsonstream
import "encoding/json" import "encoding/json"
// JSONMessage defines a message struct. It describes // Message defines a message struct. It describes
// the created time, where it from, status, ID of the // the created time, where it from, status, ID of the
// message. It's used for docker events. // message.
type Message struct { type Message struct {
Stream string `json:"stream,omitempty"` Stream string `json:"stream,omitempty"`
Status string `json:"status,omitempty"` Status string `json:"status,omitempty"`

View File

@@ -2,9 +2,9 @@ package jsonstream
import "encoding/json" import "encoding/json"
// JSONMessage defines a message struct. It describes // Message defines a message struct. It describes
// the created time, where it from, status, ID of the // the created time, where it from, status, ID of the
// message. It's used for docker events. // message.
type Message struct { type Message struct {
Stream string `json:"stream,omitempty"` Stream string `json:"stream,omitempty"`
Status string `json:"status,omitempty"` Status string `json:"status,omitempty"`