7 lines
256 B
Python
7 lines
256 B
Python
from channel_inventory import get_channel_map
|
|
|
|
# Compatibility shim for older scripts that still import channels.py directly.
|
|
CHANNEL_MAP = get_channel_map()
|
|
MAP_ALLOW_NORMAL = dict(CHANNEL_MAP.get(1, {}))
|
|
MAP_ALLOW_SPECIAL = dict(CHANNEL_MAP.get(99, {}))
|