Current section

Files

Jump to
cldrex lib cldrex main.ex
Raw

lib/cldrex/main.ex

# This is a hacky intermediate module that will call the Data module to parse
# the files on commaned line. This module can then be included in other modules
# that need access to the data.
defmodule CLDRex.Main do
@moduledoc false
require CLDRex.Parsers.XMLParser
@data CLDRex.Parsers.XMLParser.parse_main_data
@doc false
def cldr_main_data, do: @data
end