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

check.go « hook « gitaly « internal - gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cb71aecc6a14bf8b7fb4ecda4d035df40c4d0315 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package hook

import (
	"context"

	"gitlab.com/gitlab-org/gitaly/v15/internal/gitlab"
)

//nolint:stylecheck // This is unintentionally missing documentation.
func (m *GitLabHookManager) Check(ctx context.Context) (*gitlab.CheckInfo, error) {
	return m.gitlabClient.Check(ctx)
}