14 lines
322 B
Python
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'
|
|
]
|