Welcome to mirror list, hosted at ThFree Co, Russian Federation.

executor.go « git2go « internal - gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0007ab7e59bebebfbb05ac1d72efab6c67ac7bff (plain)
1
2
3
4
5
6
7
8
9
10
11
package git2go

// Executor executes gitaly-git2go.
type Executor struct {
	binaryPath string
}

// New returns a new gitaly-git2go executor using the provided binary.
func New(binaryPath string) Executor {
	return Executor{binaryPath: binaryPath}
}