Files
micro-client-http/client_stream.go
pugnack 24801750a7
Some checks failed
coverage / build (push) Successful in 2m19s
test / test (push) Failing after 17m15s
integrate request builder into HTTP client for googleapis support (#157)
2025-09-23 13:30:15 +03:00

14 lines
251 B
Go

package http
import (
"context"
"go.unistack.org/micro/v4/client"
)
// TODO: Add stream support in the future.
func (c *Client) fnStream(context.Context, client.Request, ...client.CallOption) (client.Stream, error) {
panic("not implemented")
}