blob: c2d23e13c3f3253352872456e2b48f4437d4e9ea (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
package blob
import "lindenii.org/go/furgit/object/typ"
// ObjectType returns TypeBlob.
func (blob *Blob) ObjectType() typ.Type {
_ = blob
return typ.Blob
}
|