Files
dotfiles/python/zfs/__init__.py
2025-10-31 22:37:54 -04:00

12 lines
190 B
Python

"""init."""
from python.zfs.dataset import Dataset, Snapshot, get_datasets
from python.zfs.zpool import Zpool
__all__ = [
"Dataset",
"Snapshot",
"Zpool",
"get_datasets",
]