ge-tool/backend/common/__init__.py
2025-12-10 13:41:43 +07:00

15 lines
417 B
Python
Executable File

"""
Common utilities package for DKI Download backend.
Contains shared logic used across multiple modules.
"""
from .destination_helper import get_download_destination_path
from .file_type_helper import is_folder_path, should_add_zip_extension, get_download_filename
__all__ = [
'get_download_destination_path',
'is_folder_path',
'should_add_zip_extension',
'get_download_filename',
]