9 lines
125 B
Python
9 lines
125 B
Python
from typing import List, Type
|
|
|
|
from .ext import ExtFs
|
|
from .generic import Vfs
|
|
|
|
vfs_schemes: List[Type[Vfs]] = [
|
|
ExtFs
|
|
]
|