wildland_dfs/
lib.rs

1//
2// Wildland Project
3//
4// Copyright © 2022 Golem Foundation
5//
6// This program is free software: you can redistribute it and/or modify
7// it under the terms of the GNU General Public License version 3 as published by
8// the Free Software Foundation.
9//
10// This program is distributed in the hope that it will be useful,
11// but WITHOUT ANY WARRANTY; without even the implied warranty of
12// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13// GNU General Public License for more details.
14//
15// You should have received a copy of the GNU General Public License
16// along with this program.  If not, see <https://www.gnu.org/licenses/>.
17
18pub mod encrypted;
19pub mod storage_backend;
20pub mod unencrypted;
21
22pub use wildland_corex::{
23    Storage,
24    StorageTemplate,
25    StorageTemplateError,
26    CONTAINER_NAME_PARAM,
27    CONTAINER_UUID_PARAM,
28};