All modules, configs, paths, and references updated. 836 tests pass, zero warnings. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
13 lines
258 B
Elixir
13 lines
258 B
Elixir
defmodule Berrypod.Cldr do
|
|
@moduledoc """
|
|
CLDR backend for internationalization and currency formatting.
|
|
|
|
Used by ex_money for currency handling.
|
|
"""
|
|
|
|
use Cldr,
|
|
locales: ["en"],
|
|
default_locale: "en",
|
|
providers: [Cldr.Number, Money]
|
|
end
|