""" core/performance — 效能測試與歷史記錄模組。 提供 Benchmark 執行、結果儲存與回歸分析功能。 使用範例: from core.performance import ( PerformanceBenchmarker, BenchmarkConfig, BenchmarkResult, PerformanceHistory, ) """ from .benchmarker import BenchmarkConfig, BenchmarkResult, PerformanceBenchmarker from .history import PerformanceHistory __all__ = [ "BenchmarkConfig", "BenchmarkResult", "PerformanceBenchmarker", "PerformanceHistory", ]