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: 4b43b8f4b6f5f0073c5feb1688c261933bb3539d (plain)
1
2
3
4
5
6
7
8
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, error)
}