10 lines
179 B
Go
10 lines
179 B
Go
package channel
|
|
|
|
import (
|
|
service "houston/service/response"
|
|
)
|
|
|
|
type IChannelUtil interface {
|
|
CreateGrafanaImageResponseChannel() chan service.MonitoringServiceClientResponse
|
|
}
|