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

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

// FeatureFlags is a struct only used by tests to confirm that feature flags are
// being properly propagated from the git2go Executor to the gitaly-git2go
// binary
type FeatureFlags struct {
	// Raw is a map of feature flags and their corresponding values
	Raw map[string]string
	// Err is set if an error occurred. Err must exist on all gob serialized
	// results so that any error can be returned.
	Err error
}