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 }