wol 03f2c49b7e
Some checks failed
Remove old artifacts / remove-old-artifacts (push) Has been cancelled
init
2025-08-04 00:20:29 +08:00

11 lines
259 B
Python

from fastapi_babel import BabelConfigs, Babel
from pathlib import Path
babel_configs = BabelConfigs(
ROOT_DIR=Path(__file__).parent.parent,
BABEL_DEFAULT_LOCALE="en_US",
BABEL_TRANSLATION_DIRECTORY="lang",
)
babel = Babel(configs=babel_configs)