13 lines
250 B
Python
13 lines
250 B
Python
import xmlrpc.server as xrs
|
|
|
|
|
|
class RPCServer(xrs.SimpleXMLRPCServer):
|
|
|
|
def __init__(self, host, port, *args, **kwargs):
|
|
addr = (host, port)
|
|
kwargs.setdefault("allow_none", True)
|
|
super().__init__(addr, *args, **kwargs)
|
|
|
|
|
|
|