mirror of
https://github.com/go-gitea/gitea
synced 2024-11-05 19:17:10 +01:00
cbf923e87b
Refactor Hash interfaces and centralize hash function. This will allow easier introduction of different hash function later on. This forms the "no-op" part of the SHA256 enablement patch.
14 lines
337 B
Go
14 lines
337 B
Go
// Copyright 2020 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package git
|
|
|
|
// GetBlob finds the blob object in the repository.
|
|
func (repo *Repository) GetBlob(idStr string) (*Blob, error) {
|
|
id, err := repo.objectFormat.NewIDFromString(idStr)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return repo.getBlob(id)
|
|
}
|