good morning!!!!

Skip to content
Commits on Source (1)
  • a's avatar
    fix helper · eb83fd68
    a authored
    eb83fd68
......@@ -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
}
......