- # -*- coding: utf-8 -*-
- # @Time : 2023/8/21 15:21
- # @Author : XuJiakai
- # @File : const
- # @Software: PyCharm
- from data_clean.utils.base_utils import is_windows
- mongo_table_prefix = 'a_data_clean_' if not is_windows() else 'a_test_data_clean_'
- if __name__ == '__main__':
- pass
|