BUild fix (#319)

This commit is contained in:
Vijay Joshi
2023-12-12 11:08:19 +05:30
committed by GitHub
parent 662a7c3446
commit bcb352b5b6
4 changed files with 9 additions and 9 deletions

View File

@@ -7,8 +7,8 @@ import (
type ChannelUtil struct {
}
func (util *ChannelUtil) CreateGrafanaImageResponseChannel() chan service.GrafanaImageFetchResponse {
return make(chan service.GrafanaImageFetchResponse)
func (util *ChannelUtil) CreateGrafanaImageResponseChannel() chan service.MonitoringServiceClientResponse {
return make(chan service.MonitoringServiceClientResponse)
}
func NewChannelUtil() *ChannelUtil {

View File

@@ -5,5 +5,5 @@ import (
)
type IChannelUtil interface {
CreateGrafanaImageResponseChannel() chan service.GrafanaImageFetchResponse
CreateGrafanaImageResponseChannel() chan service.MonitoringServiceClientResponse
}