module Catalogcat class Client < Footrest::Client module Orders def list_orders(params = {}) get("api/v1/orders", params) end def get_order(id, params = {}) get("api/v1/orders/#{id}", params) end end end end