blob: eb776f31cfb49f6de8d3f7632003eec8cba69186 (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package stored
import (
"codeberg.org/lindenii/furgit/object"
objectid "codeberg.org/lindenii/furgit/object/id"
)
// Stored represents a stored object,
// i.e., an object along with its object ID.
type Stored[T object.Object] struct {
id objectid.ObjectID
obj T
}
|