8 lines
194 B
Python
8 lines
194 B
Python
import json
|
|
|
|
with open("server-rx.json", 'r', encoding = "utf-8") as file:
|
|
server_data = json.load(file)
|
|
|
|
bind = f"{server_data['ip']}:{server_data['port']}"
|
|
workers = 2
|
|
timeout = 120 |