10 lines
189 B
Python
10 lines
189 B
Python
from typing import Type, List
|
|
|
|
from ..blockdev import BlockDevice
|
|
|
|
|
|
class Vfs:
|
|
@staticmethod
|
|
def from_blockdevice(device: BlockDevice) -> 'Vfs':
|
|
raise NotImplementedError()
|