24 lines
424 B
Python
24 lines
424 B
Python
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
"""
|
|
資料模型模組
|
|
|
|
Author: PANJIT IT Team
|
|
Created: 2024-01-28
|
|
Modified: 2024-01-28
|
|
"""
|
|
|
|
from .user import User
|
|
from .job import TranslationJob, JobFile
|
|
from .cache import TranslationCache
|
|
from .stats import APIUsageStats
|
|
from .log import SystemLog
|
|
|
|
__all__ = [
|
|
'User',
|
|
'TranslationJob',
|
|
'JobFile',
|
|
'TranslationCache',
|
|
'APIUsageStats',
|
|
'SystemLog'
|
|
] |