"""init.""" # run_command is deliberately not re-exported here. It is available from # python.zfs.command when something genuinely needs another binary, but the # wrappers are what callers should reach for by default. from python.zfs.command import CommandResult, run_zfs, run_zpool from python.zfs.dataset import ( Dataset, Snapshot, create_dataset, get_datasets, get_properties, list_dataset_names, set_property, ) from python.zfs.zpool import Zpool __all__ = [ "CommandResult", "Dataset", "Snapshot", "Zpool", "create_dataset", "get_datasets", "get_properties", "list_dataset_names", "run_zfs", "run_zpool", "set_property", ]