blob: c0a0db8fa9097935d8b74a82cdf14594111248a9 (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
package stored
import (
"codeberg.org/lindenii/furgit/object"
"codeberg.org/lindenii/furgit/objectid"
)
// StoredObject is a parsed object paired with its storage ID.
type StoredObject interface {
// ID returns the object ID the object was loaded from.
ID() objectid.ObjectID
// Object returns the parsed object value.
Object() object.Object
}
|