aboutsummaryrefslogtreecommitdiff
path: root/object/fetch/size.go
blob: 5eac94618f690e3f59e73db7441f4626e3dde6eb (about) (plain) (blame)
1
2
3
4
5
6
7
8
9
10
package fetch

import objectid "codeberg.org/lindenii/furgit/object/id"

// Size returns the object content size at id.
//
// Labels: Life-Parent.
func (r *Fetcher) Size(id objectid.ObjectID) (int64, error) {
	return r.store.ReadSize(id)
}