summaryrefslogtreecommitdiffstats
path: root/src/go/collectors/go.d.plugin/agent/discovery/sd/model/discoverer.go
blob: 301322d32f9fe091fa65599a312782ea6853bd74 (plain)
1
2
3
4
5
6
7
8
9
10
11
// SPDX-License-Identifier: GPL-3.0-or-later

package model

import (
	"context"
)

type Discoverer interface {
	Discover(ctx context.Context, ch chan<- []TargetGroup)
}