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