aboutsummaryrefslogtreecommitdiff
path: root/object/stored/stored.go
blob: 26bd3275619b019012be59bc415b119c11c1b9fe (about) (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
package stored

import (
	"lindenii.org/go/furgit/object"
	objectid "lindenii.org/go/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
}