(b []byte)
| 194 | } |
| 195 | |
| 196 | func ByteToReadCloser(b []byte) io.ReadCloser { |
| 197 | reader := bytes.NewReader(b) |
| 198 | readCloser := io.NopCloser(reader) |
| 199 | return readCloser |
| 200 | } |
| 201 | |
| 202 | func (c *controller) ProxyManifest( |
| 203 | ctx context.Context, |
no outgoing calls
no test coverage detected
searching dependent graphs…