summaryrefslogtreecommitdiffstats
path: root/modules/git/repo_blob_nogogit.go
blob: 9959420df4e98504693838111775d6018f9381cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright 2020 The Gitea Authors. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.

// +build !gogit

package git

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