9 lines
120 B
Python
9 lines
120 B
Python
|
from .configs import PHASE_CONFIGS
|
||
|
|
||
|
|
||
|
|
||
|
PHASE_LIST = list(PHASE_CONFIGS.keys())
|
||
|
|
||
|
__all__ = [
|
||
|
"PHASE_CONFIGS"
|
||
|
]
|