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

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

// Object is a Git object.
type Object interface {
	ObjectType() typ.Type
	AppendWithoutHeader(dst []byte) ([]byte, error)
	AppendWithHeader(dst []byte) ([]byte, error)
}