13 lines
263 B
Python
13 lines
263 B
Python
|
# standard imports
|
||
|
|
||
|
# external imports
|
||
|
|
||
|
# local imports
|
||
|
from .base import MetadataRequestsHandler
|
||
|
|
||
|
|
||
|
class CustomMetadata(MetadataRequestsHandler):
|
||
|
|
||
|
def __init__(self, identifier: bytes):
|
||
|
super().__init__(cic_type=':cic.custom', identifier=identifier)
|