module SpacexApi::Client::Crews

Public Instance Methods

crews() click to toggle source
# File lib/spacex_api/client/crews.rb, line 6
def crews
  get("crew")
end
get_crew(id) click to toggle source
# File lib/spacex_api/client/crews.rb, line 10
def get_crew(id)
  get("crew/#{id}")
end
query_crews(body = nil) click to toggle source
# File lib/spacex_api/client/crews.rb, line 14
def query_crews(body = nil)
  post("crew/query", body)
end