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

auth.go « auth « internal - gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1bf8de9218767c508205f89cc3f389300009437d (plain)
1
2
3
4
5
6
7
package auth

// Config is a struct for an authentication config
type Config struct {
	Transitioning bool   `toml:"transitioning"`
	Token         string `toml:"token"`
}