What I'm trying right now: ``` {% for method in %w(get post patch head delete) %} {% for client_method in HTTP::Client.methods %} {% if method == client_method.name %} def {{client_method.name}}({{ client_method.args.map(&.stringify).reject { |v| v == "" }.join(", ").id }}) end {% end %} {% debug %} {% end %} {% end %} ```