// Copyright (C) 2023 Gokul Das B
// SPDX-License-Identifier: GPL-3.0-or-later
//! Snapshot management module
//!
//! This module deals with creation, listing and deletion of snapshot (chroots) in the
//! workspace. This operation may be on any of the specific backends (btrfs, directory, zfs, etc)
//! that's chosen by the user in the config file. For the sake of simplicity, the backends are
//! managed using other command line tools (like btrfs command) when available.
pub use BackendTypes;
use ModConfig;
pub use SubCmdArgs;