MCPcopy Index your code
hub / github.com/docker/docker-agent / NewBytesSource

Function NewBytesSource

pkg/config/sources.go:78–83  ·  view source on GitHub ↗
(name string, data []byte)

Source from the content-addressed store, hash-verified

76}
77
78func NewBytesSource(name string, data []byte) Source {
79 return bytesSource{
80 name: name,
81 data: data,
82 }
83}
84
85func (a bytesSource) Name() string {
86 return a.name

Calls

no outgoing calls