10 lines
145 B
Python
10 lines
145 B
Python
class SoapProtocol(object):
|
|
name = 'soap'
|
|
accept = ''
|
|
|
|
def __init__(self):
|
|
pass
|
|
|
|
|
|
controller.register_protocol(SoapProtocol)
|