mirror of
https://github.com/RichieCahill/dotfiles.git
synced 2026-04-17 13:08:19 -04:00
12 lines
190 B
Python
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",
|
|
]
|