aboutsummaryrefslogtreecommitdiffstats
path: root/modules/git/repo_blob_nogogit.go
blob: 04b0fb00ff73454e8f040b5414d1be7f8923ad13 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright 2020 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT

//go:build !gogit

package git

func (repo *Repository) getBlob(id ObjectID) (*Blob, error) {
	if id.IsZero() {
		return nil, ErrNotExist{id.String(), ""}
	}
	return &Blob{
		ID:   id,
		repo: repo,
	}, nil
}