Files
micro-client-http/client_stream.go
pugnack c757127453
All checks were successful
coverage / build (push) Successful in 2m19s
test / test (push) Successful in 2m27s
integrate request builder into HTTP client for googleapis support (#159)
2025-10-03 08:39:44 +03:00

14 lines
251 B
Go

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