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

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

// GitalyServer allows configuring the servers that RPCs are proxied to
type GitalyServer struct {
	Name       string `toml:"name"`
	ListenAddr string `toml:"listen_addr" split_words:"true"`
	Token      string `toml:"token"`
}