16 lines
278 B
Python
16 lines
278 B
Python
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
"""
|
|
Celery 任務模組
|
|
|
|
Author: PANJIT IT Team
|
|
Created: 2024-01-28
|
|
Modified: 2024-01-28
|
|
"""
|
|
|
|
from .translation import process_translation_job, cleanup_old_files
|
|
|
|
__all__ = [
|
|
'process_translation_job',
|
|
'cleanup_old_files'
|
|
] |