mirror of
https://github.com/eigent-ai/eigent.git
synced 2026-04-28 11:40:25 +00:00
10 lines
259 B
Python
10 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)
|