Add diff and utils modules
Some checks failed
CI / test (3.10) (push) Has been cancelled
CI / test (3.11) (push) Has been cancelled
CI / test (3.12) (push) Has been cancelled
CI / lint (push) Has been cancelled
CI / build (push) Has been cancelled

This commit is contained in:
2026-02-02 17:22:49 +00:00
parent 8bacceea68
commit 2a919c980e

View File

@@ -0,0 +1,10 @@
"""Utils package."""
from i18n_guardian.utils.file_utils import find_translation_files, read_file_safe
from i18n_guardian.utils.path_utils import glob_patterns
__all__ = [
"find_translation_files",
"read_file_safe",
"glob_patterns",
]