# frozen_string_literal: true

module OpenRecycling
  module Core
    class RecyclingAccounts < OpenRecycling::Resource
      def initialize(base_url: nil, jwt_token: nil)
        super(
          root_node_singular: "recycling_account",
          root_node_plural: "recycling_accounts",
          api_url: "#{base_url}/recycling_accounts",
          jwt_token: jwt_token
        )
      end
    end
  end
end