12345678910111213141516 |
- # -*- coding: utf-8 -*-
- # @Time : 2023/7/20 16:09
- # @Author : XuJiakai
- # @File : __init__.py
- # @Software: PyCharm
- from data_clean.utils.log import get_log
- from data_clean.utils.base_utils import is_windows, to_string
- __all__ = [
- 'get_log',
- 'is_windows',
- 'to_string',
- ]
- if __name__ == '__main__':
- pass
|