module Bearcat
  class Client < Footrest::Client
    module Conversations

      def create_conversation(params = {})
        post("/api/v1/conversations", params)
      end

      def delete_conversation(conversation)
        delete("/api/v1/conversations/#{conversation.to_s}")
      end

    end
  end
end