module Bearcat class Client module AccountReports extend ClientModule prefix "/api/v1/accounts/:account/reports/" do get :available_reports post :start_report, ":report" get :report_index, ":report" get :report_status, ":report/:report_id" end end end end