Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions client.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@
"go.unistack.org/micro/v3/tracer"
)

var _ client.Client = (*Client)(nil)

Check failure on line 17 in client.go

View workflow job for this annotation

GitHub Actions / lint

cannot use (*Client)(nil) (value of type *Client) as client.Client value in variable declaration: *Client does not implement client.Client (missing method BatchPublish)) (typecheck)

Check failure on line 17 in client.go

View workflow job for this annotation

GitHub Actions / lint

cannot use (*Client)(nil) (value of type *Client) as client.Client value in variable declaration: *Client does not implement client.Client (missing method BatchPublish) (typecheck)

Check failure on line 17 in client.go

View workflow job for this annotation

GitHub Actions / test

cannot use (*Client)(nil) (value of type *Client) as client.Client value in variable declaration: *Client does not implement client.Client (missing method BatchPublish)

var DefaultContentType = "application/json"

type Client struct {
Expand Down
Loading