blob: 903a88237f39038e807b0d7479a327126923d41c (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
package object
import objecttype "lindenii.org/go/furgit/object/type"
// Object is a Git object.
type Object interface {
ObjectType() objecttype.Type
BytesWithoutHeader() ([]byte, error)
BytesWithHeader() ([]byte, error)
}
|