shithub: furgit

ref: 677887b7aa3d673bd92a7876f3987cd2f86cb43d
dir: /object/blob.go/

View raw version
package object

import "codeberg.org/lindenii/furgit/objecttype"

// Blob represents a Git blob object.
type Blob struct {
	Data []byte
}

// ObjectType returns TypeBlob.
func (blob *Blob) ObjectType() objecttype.Type {
	_ = blob
	return objecttype.TypeBlob
}