blob: f675b963497af33d7e1f85017b53894d760b0cf2 (
about) (
plain) (
blame)
1
2
3
4
5
6
7
|
// Package object provides the shared [Object] interface and parsing functions
// for Git object values.
//
// Concrete object forms such as [blob], [tree], [commit], and [tag] live in
// subpackages. Use [codeberg.org/lindenii/furgit/object/stored] when object
// values need to be paired with the object IDs they were loaded under.
package object
|