5 lines
120 B
Python
5 lines
120 B
Python
from collections import namedtuple
|
|
|
|
|
|
class Certificate(namedtuple('Certificate', ('channel', 'private_key'))):
|
|
pass
|