2021-04-09 15:00:15 +02:00
|
|
|
# standard imports
|
|
|
|
import logging
|
|
|
|
|
|
|
|
# external imports
|
|
|
|
|
|
|
|
# local imports
|
2021-04-14 11:00:10 +02:00
|
|
|
from .base import MetadataRequestsHandler
|
2021-04-09 15:00:15 +02:00
|
|
|
|
|
|
|
|
2021-04-14 11:00:10 +02:00
|
|
|
class PhonePointerMetadata(MetadataRequestsHandler):
|
2021-04-09 15:00:15 +02:00
|
|
|
|
2021-04-14 11:00:10 +02:00
|
|
|
def __init__(self, identifier: bytes):
|
2021-05-01 16:52:54 +02:00
|
|
|
super().__init__(cic_type=':cic.phone', identifier=identifier)
|