1package git23// ObjectType is the type of a Git objet.4type ObjectType string56// A list of object types.7const (8 ObjectCommit ObjectType = "commit"9 ObjectTree ObjectType = "tree"10 ObjectBlob ObjectType = "blob"11 ObjectTag ObjectType = "tag"12)