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: b467131a54e8c34e052226827a826ccd60f66c2e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package hook

import (
	"context"

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

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