1
0
mirror of https://github.com/regclient/regclient.git synced 2025-04-18 22:44:00 +03:00
regclient/types/blob/blob.go
Brandon Mitchell 218b1ccd4f Refactoring packages under types
Signed-off-by: Brandon Mitchell <git@bmitch.net>
2021-12-29 14:51:00 -05:00

8 lines
119 B
Go

package blob
// Blob interface is used for returning blobs
type Blob interface {
Common
RawBody() ([]byte, error)
}