1
0
mirror of https://github.com/regclient/regclient.git synced 2025-07-29 09:01:11 +03:00

Refactoring packages under types

Signed-off-by: Brandon Mitchell <git@bmitch.net>
This commit is contained in:
Brandon Mitchell
2021-12-29 14:43:13 -05:00
parent f7e5e6601a
commit 218b1ccd4f
19 changed files with 2265 additions and 0 deletions

7
types/blob/blob.go Normal file
View File

@ -0,0 +1,7 @@
package blob
// Blob interface is used for returning blobs
type Blob interface {
Common
RawBody() ([]byte, error)
}