Files
tk-factory-services/tkeg/api/app/services/__init__.py
2026-03-16 15:41:58 +09:00

14 lines
322 B
Python

"""
서비스 모듈
"""
from .material_classifier import classify_material, get_manufacturing_method_from_material
from .materials_schema import MATERIAL_STANDARDS, SPECIAL_MATERIALS
__all__ = [
'classify_material',
'get_manufacturing_method_from_material',
'MATERIAL_STANDARDS',
'SPECIAL_MATERIALS'
]