Files
neonsr/game_server/srtools/gateway.py
2025-04-17 20:13:39 +08:00

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