aboutsummaryrefslogtreecommitdiff
path: root/object/blob/test.go
blob: b2c086f6f75af6570ebb203deb5feb7ead86cb5f (about) (plain) (blame)
1
2
3
4
5
6
7
8
9
10
package blob

import objecttype "lindenii.org/go/furgit/object/type"

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

	return objecttype.TypeBlob
}