btrfs-backup 0.2.2

A program for backup & restoration of btrfs subvolumes.
Documentation
1
2
3
4
5
6
7
8
9
// Copyright (C) 2023 Daniel Mueller <deso@posteo.net>
// SPDX-License-Identifier: GPL-3.0-or-later

#[allow(clippy::module_inception)]
mod btrfs;
mod commands;

pub use btrfs::trace_commands;
pub use btrfs::Btrfs;