9 lines
193 B
Python
9 lines
193 B
Python
class MediaReader:
|
|
def __init__(self):
|
|
pass
|
|
|
|
def load_from_media(self,media_info:str) -> int:
|
|
pass
|
|
|
|
def read(self, inner_path:str):
|
|
raise NotImplementedError |