# frozen_string_literal: true module TheFreeDictionary class German < Dictionary def initialize @language = 'de' @region = 'DE' end end end