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

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

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