feat: Initial commit of Clutch-IQ project

This commit is contained in:
xunyulin230420
2026-02-05 23:26:03 +08:00
commit a355239861
66 changed files with 12922 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
"""
L2 Processor Modules
This package contains specialized processors for L2 database construction:
- match_processor: Handles fact_matches and fact_match_teams
- player_processor: Handles dim_players and fact_match_players (all variants)
- round_processor: Dispatches round data processing based on data_source_type
- economy_processor: Processes leetify economic data
- event_processor: Processes kill and bomb events
- spatial_processor: Processes classic spatial (xyz) data
"""
__all__ = [
'match_processor',
'player_processor',
'round_processor',
'economy_processor',
'event_processor',
'spatial_processor'
]