20 lines
370 B
Python
20 lines
370 B
Python
# -*- coding: utf-8 -*-
|
|
"""
|
|
섹션별 UI 패키지
|
|
지시, 고장, 작업, 기타 섹션 정의
|
|
"""
|
|
|
|
from .instruction_section import InstructionSection
|
|
from .fault_section import FaultSection
|
|
from .work_section import WorkSection
|
|
from .misc_section import MiscSection
|
|
|
|
__all__ = [
|
|
'InstructionSection',
|
|
'FaultSection',
|
|
'WorkSection',
|
|
'MiscSection',
|
|
]
|
|
|
|
|