mirror of
https://gitee.com/winc-link/hummingbird.git
synced 2025-04-21 08:52:42 +00:00
9 lines
164 B
Go
9 lines
164 B
Go
package streamclient
|
|
|
|
import "github.com/winc-link/hummingbird/internal/dtos"
|
|
|
|
type StreamClient interface {
|
|
Send(data dtos.RpcData)
|
|
Recv() <-chan dtos.RpcData
|
|
}
|