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

lookup.go « api « gitlab « source « internal - gitlab.com/gitlab-org/gitlab-pages.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 73a3ce433a65e3930ac6061973412aa832feb9e4 (plain)
1
2
3
4
5
6
7
8
package api

// Lookup defines an API lookup action with a response that GitLab sends
type Lookup struct {
	Name   string
	Error  error
	Domain *VirtualDomain
}