mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-06-04 11:25:52 +08:00
10 lines
160 B
Go
10 lines
160 B
Go
package anomaly
|
|
|
|
import (
|
|
"context"
|
|
)
|
|
|
|
type Provider interface {
|
|
GetAnomalies(ctx context.Context, req *GetAnomaliesRequest) (*GetAnomaliesResponse, error)
|
|
}
|