9 lines
178 B
Python
9 lines
178 B
Python
gateway_instance = None
|
|
|
|
def set_gateway_instance(instance):
|
|
global gateway_instance
|
|
gateway_instance = instance
|
|
|
|
def get_gateway_instance():
|
|
return gateway_instance
|