blob: 85397deb59a0997929f775132f78fddd1df50a59 [file] [log] [blame]
// Package alert group contains code to interact with alert group apis on chromeperf
package alertgroup
import (
"context"
)
// Service provides the interface to interact with AlertGroup apis on chromeperf
type Service interface {
GetAlertGroupDetails(ctx context.Context, groupKey string) (*AlertGroupDetails, error)
}