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

import "codeberg.org/lindenii/furgit/object/typ"

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

	return typ.TypeBlob
}