feat: Initial commit of Clutch-IQ project
This commit is contained in:
20
database/L2/processors/__init__.py
Normal file
20
database/L2/processors/__init__.py
Normal 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'
|
||||
]
|
||||
Reference in New Issue
Block a user