class Gitlab::Headers::Total

def extract_total(header_total)

def extract_total(header_total)
  TOTAL_REGEX.match(header_total.strip) do |match|
    @total = match[0]
  end
end