invincible-jha's picture
Create modules/__init__.py
a161463 verified
raw
history blame contribute delete
324 Bytes
"""
EEG Mental Health Platform Core Modules
"""
from .eeg_processor import EEGProcessor
from .brain_mapper import BrainMapper
from .clinical_analyzer import ClinicalAnalyzer
from .treatment_planner import TreatmentPlanner
__all__ = [
'EEGProcessor',
'BrainMapper',
'ClinicalAnalyzer',
'TreatmentPlanner'
]