9 lines
119 B
Python
9 lines
119 B
Python
|
|
||
|
|
||
|
class Orderer(object):
|
||
|
"""
|
||
|
An orderer node
|
||
|
"""
|
||
|
|
||
|
def __init__(self, org_name, node_name):
|
||
|
pass
|