mirror of
https://github.com/regclient/regclient.git
synced 2025-04-18 22:44:00 +03:00
8 lines
119 B
Go
8 lines
119 B
Go
package blob
|
|
|
|
// Blob interface is used for returning blobs
|
|
type Blob interface {
|
|
Common
|
|
RawBody() ([]byte, error)
|
|
}
|