berrypod/lib/berrypod/cldr.ex
jamey 9528700862 rename project from SimpleshopTheme to Berrypod
All modules, configs, paths, and references updated.
836 tests pass, zero warnings.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-18 21:23:15 +00:00

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