Add media type to export stream

Signed-off-by: Derek McGowan <derek@mcg.dev>
This commit is contained in:
Derek McGowan
2022-10-04 15:34:45 -07:00
parent 52341a2343
commit 0762a3a759
5 changed files with 17 additions and 13 deletions

View File

@@ -81,7 +81,7 @@ type ImageImportStreamer interface {
}
type ImageExportStreamer interface {
ExportStream(context.Context) (io.WriteCloser, error)
ExportStream(context.Context) (io.WriteCloser, string, error)
}
type ImageUnpacker interface {