good morning!!!!

Skip to content
Snippets Groups Projects
Commit eb83fd68 authored by a's avatar a
Browse files

fix helper

parent 14b46c48
No related branches found
No related tags found
No related merge requests found
......@@ -4,7 +4,7 @@ import "context"
func Do[T any](ctx context.Context, c Conn, method string, args any) (*T, error) {
var t T
err := c.Do(ctx, &t, method, args)
err := c.Call(ctx, &t, method, args)
if err != nil {
return nil, err
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment