Files
houston-be/pkg/monitoringService/monitoring_service_client_interface.go

13 lines
366 B
Go

package monitoringService
import (
service "houston/service/response"
)
type MonitoringServiceActions interface {
GetGrafanaImages(incidents []string, requestId string,
responseChannel chan service.MonitoringServiceClientResponse)
GetImpactedCustomersCSV(incidents []string, requestId string,
responseChannel chan service.MonitoringServiceClientResponse)
}