mirror of
https://github.com/LBRYFoundation/lbry-sdk.git
synced 2025-08-30 00:41:25 +00:00
5 lines
145 B
Python
5 lines
145 B
Python
from collections import namedtuple
|
|
|
|
|
|
class Certificate(namedtuple('Certificate', ('txid', 'nout', 'claim_id', 'name', 'private_key'))):
|
|
pass
|