const.py 280 B

1234567891011
  1. # -*- coding: utf-8 -*-
  2. # @Time : 2023/8/21 15:21
  3. # @Author : XuJiakai
  4. # @File : const
  5. # @Software: PyCharm
  6. from data_clean.utils.base_utils import is_windows
  7. mongo_table_prefix = 'a_data_clean_' if not is_windows() else 'a_test_data_clean_'
  8. if __name__ == '__main__':
  9. pass