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

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

import "gitlab.com/gitlab-org/gitlab-pages/internal/domain"

// Source represents an abstract interface of a domains configuration source.
type Source interface {
	GetDomain(string) *domain.Domain
	HasDomain(string) bool
}