cic-stack/apps/cic-ussd/cic_ussd/state_machine/logic/manager.py

16 lines
297 B
Python

# standard imports
import json
# external imports
# local imports
class States:
non_resumable_states = None
@classmethod
def load_non_resumable_states(cls, file_path):
with open(file_path, 'r') as states_file:
cls.non_resumable_states = json.load(states_file)