22 lines
443 B
Python
22 lines
443 B
Python
#!/usr/bin/env python
|
|
# coding=utf-8
|
|
|
|
"""
|
|
@author: CNWei
|
|
@Software: PyCharm
|
|
@contact: t6i888@163.com
|
|
@file: __init__.py
|
|
@date: 2025/3/4 17:23
|
|
@desc:
|
|
"""
|
|
from .base_processor import BaseFileProcessor
|
|
from .json_processor import JsonProcessor
|
|
from .yaml_processor import YamlProcessor
|
|
from .processor_factory import get_processor_class
|
|
|
|
__all__ = [
|
|
"BaseFileProcessor",
|
|
"JsonProcessor",
|
|
"YamlProcessor",
|
|
"get_processor_class",
|
|
] |